diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c95a78d7..ea998de29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,12 @@ jobs: if (( $(node_modules/tree-sitter-cli/tree-sitter parse test/Petalisp/**/*.lisp -q | wc -l) > 2 )); then # There are 2 known failures (strings that are not format strings but use ~X syntax) exit 1 else - echo "Successfully parsed Petalisp" + echo "Successfully parsed Petalisp." + fi + if (( $(node_modules/tree-sitter-cli/tree-sitter parse test/sly/**/*.lisp -q | wc -l) > 4 )); then # There are 2 known failures (strings that are not format strings but use ~X syntax) + exit 1 + else + echo "Successfully parsed Sly" fi - name: Run tests run: npm test diff --git a/.gitmodules b/.gitmodules index 09d6eaab2..e9812d1cb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "test/Petalisp"] path = test/Petalisp url = https://github.com/marcoheisig/Petalisp.git +[submodule "test/sly"] + path = test/sly + url = https://github.com/joaotavora/sly.git diff --git a/README.md b/README.md index 375037a83..9cdd30e78 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,5 @@ Macros with special respresentation in syntax tree (when written with lowercase - defun and friends (e.g. defmethod) - loop macro + +This grammar is used in https://github.com/Wilfred/difftastic to generate syntax-ware diffs for Common Lisp. diff --git a/grammar.js b/grammar.js index 593bf0523..82f576554 100644 --- a/grammar.js +++ b/grammar.js @@ -3,7 +3,7 @@ * Copyright (C) 2021 Stephan Seitz * Adapted from tree-sitter-clojure * - * Distributed under terms of the GPLv3 license. + * Distributed under terms of the MIT license. */ const clojure = require("tree-sitter-clojure/grammar"); @@ -114,12 +114,28 @@ function clSymbol(symbol) { return seq(optional(seq('cl', ':')), symbol) } +function loopSymbol(symbol) { + return seq(optional(seq(optional('cl'), ':')), symbol) +} + +function optSeq(...args) { + return optional(seq(...args)) +} + module.exports = grammar(clojure, { name: 'commonlisp', extras: ($, original) => [...original, $.block_comment], - conflicts: ($, original) => [...original, [$.for_clause], [$.accumulation_clause], [$.loop_macro, $.defun_keyword, $.package_lit]], + conflicts: ($, + original) => [...original, + [$.for_clause_word, $.package_lit], + [$.with_clause, $.package_lit], + [$.with_clause], + [$.for_clause], + [$.accumulation_clause], + [$.loop_macro, $.defun_keyword, $.package_lit]], + rules: { block_comment: _ => token(seq('#|', repeat(choice(/[^|]/, /\|[^#]/)), '|#')), @@ -193,14 +209,14 @@ module.exports = grammar(clojure, { '"', repeat(choice( token.immediate(prec(1, /[^\\~"]+/)), - token.immediate(seq("\\\"")), + token.immediate(seq(/\\./)), $.format_specifier, )), optional('~'), '"', ), - for_clause_word: _ => clSymbol(choice( + for_clause_word: _ => loopSymbol(choice( 'in', 'across', 'being', @@ -211,6 +227,7 @@ module.exports = grammar(clojure, { 'from', 'to', 'upto', + 'upfrom', 'downto', 'downfrom', 'on', @@ -221,18 +238,16 @@ module.exports = grammar(clojure, { _for_part: $ => seq(repeat($._gap), $.for_clause_word, repeat($._gap), $._form), - accumulation_verb: _ => clSymbol(/((collect|append|nconc|count|maximize|minimize)(ing)?|sum(ming)?)/), - - for_clause: $ => choice(seq(choice(clSymbol('for'), clSymbol('and'), clSymbol('as')), repeat($._gap), field('variable', $._form), optional(field('type', seq(repeat($._gap), $._form))), - repeat1($._for_part)), clSymbol('and')), - - with_clause: $ => prec.left(seq(clSymbol('with'), repeat($._gap), $._form, optional(field('type', seq(repeat($._gap), $._form))), repeat($._gap), clSymbol("="), repeat($._gap), $._form)), - do_clause: $ => prec.left(seq(clSymbol('do'), repeat1(prec.left(seq(repeat($._gap), $._form, repeat($._gap)))))), - while_clause: $ => prec.left(seq(choice(clSymbol('while'), clSymbol('until')), repeat($._gap), $._form)), - repeat_clause: $ => prec.left(seq(clSymbol('repeat'), repeat($._gap), $._form)), - condition_clause: $ => prec.left(choice(seq(choice(clSymbol('when'), clSymbol('if'), clSymbol('unless'), clSymbol('always'), clSymbol('thereis'), clSymbol('never')), repeat($._gap), $._form), clSymbol("else"))), - accumulation_clause: $ => seq($.accumulation_verb, repeat($._gap), $._form, optional(seq(repeat($._gap), clSymbol('into'), repeat($._gap), $._form))), - termination_clause: $ => prec.left(seq(choice(clSymbol('finally'), clSymbol('return'), clSymbol('initially')), repeat($._gap), $._form)), + accumulation_verb: _ => loopSymbol(/((collect|append|nconc|count|maximize|minimize)(ing)?|sum(ming)?)/), + for_clause: $ => choice(seq(choice(loopSymbol('for'), loopSymbol('and'), loopSymbol('as')), repeat($._gap), field('variable', $._form), optional(field('type', seq(repeat($._gap), $._form))), + repeat1($._for_part)), loopSymbol('and')), + with_clause: $ => seq(loopSymbol('with'), repeat($._gap), choice($._form, seq($._form, repeat($._gap), field('type', $._form))), repeat($._gap), optSeq(loopSymbol("="), repeat($._gap)), optSeq($._form, repeat($._gap))), + do_clause: $ => prec.left(seq(loopSymbol('do'), repeat1(prec.left(seq(repeat($._gap), $._form, repeat($._gap)))))), + while_clause: $ => prec.left(seq(choice(loopSymbol('while'), loopSymbol('until')), repeat($._gap), $._form)), + repeat_clause: $ => prec.left(seq(loopSymbol('repeat'), repeat($._gap), $._form)), + condition_clause: $ => prec.left(choice(seq(choice(loopSymbol('when'), loopSymbol('if'), loopSymbol('unless'), loopSymbol('always'), loopSymbol('thereis'), loopSymbol('never')), repeat($._gap), $._form), loopSymbol("else"))), + accumulation_clause: $ => seq($.accumulation_verb, repeat($._gap), $._form, optional(seq(repeat($._gap), loopSymbol('into'), repeat($._gap), $._form))), + termination_clause: $ => prec.left(seq(choice(loopSymbol('finally'), loopSymbol('return'), loopSymbol('initially')), repeat($._gap), $._form)), loop_clause: $ => @@ -260,7 +275,11 @@ module.exports = grammar(clojure, { defun_keyword: _ => prec(10, clSymbol(choice('defun', 'defmacro', 'defgeneric', 'defmethod'))), defun_header: $ => - choice( + prec(PREC.SPECIAL, choice( + seq(field('keyword', $.defun_keyword), + repeat($._gap), + choice($.unquoting_lit, $.unquote_splicing_lit) + ), seq(field('keyword', $.defun_keyword), repeat($._gap), field('function_name', $._form), @@ -270,12 +289,12 @@ module.exports = grammar(clojure, { seq(field('keyword', alias('lambda', $.defun_keyword)), repeat($._gap), field('lambda_list', choice($.list_lit, $.unquoting_lit))) - ), + )), array_dimension: _ => prec(100, /\d+[aA]/), - char_lit: (_, original) => - seq('#', choice(original, /\\[nN]ewline/, /\\[lL]inefeed/, /\\[Ss]pace/, /\\[nN]ull/, /\\[rR]ull/)), + char_lit: _ => + seq('#', /\\([^\f\n\r\t ()]+|[()])/), vec_lit: $ => prec(PREC.SPECIAL, diff --git a/src/grammar.json b/src/grammar.json index a0405dc1c..7790cc2c2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -581,8 +581,8 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\\\"" + "type": "PATTERN", + "value": "\\\\." } ] } @@ -620,157 +620,8 @@ "value": "#" }, { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "o" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "backspace" - }, - { - "type": "STRING", - "value": "formfeed" - }, - { - "type": "STRING", - "value": "newline" - }, - { - "type": "STRING", - "value": "return" - }, - { - "type": "STRING", - "value": "space" - }, - { - "type": "STRING", - "value": "tab" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "u" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - }, - { - "type": "PATTERN", - "value": ".|\\n" - } - ] - } - ] - } - }, - { - "type": "PATTERN", - "value": "\\\\[nN]ewline" - }, - { - "type": "PATTERN", - "value": "\\\\[lL]inefeed" - }, - { - "type": "PATTERN", - "value": "\\\\[Ss]pace" - }, - { - "type": "PATTERN", - "value": "\\\\[nN]ull" - }, - { - "type": "PATTERN", - "value": "\\\\[rR]ull" - } - ] + "type": "PATTERN", + "value": "\\\\([^\\f\\n\\r\\t ()]+|[()])" } ] }, @@ -2541,8 +2392,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2598,6 +2457,10 @@ "type": "STRING", "value": "upto" }, + { + "type": "STRING", + "value": "upfrom" + }, { "type": "STRING", "value": "downto" @@ -2663,8 +2526,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2702,8 +2573,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2732,8 +2611,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2762,8 +2649,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2846,8 +2741,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -2869,130 +2772,176 @@ ] }, "with_clause": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "cl" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "with" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, - { - "type": "SYMBOL", - "name": "_form" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "type", - "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SEQ", "members": [ { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { - "type": "SYMBOL", - "name": "_form" + "type": "STRING", + "value": ":" } ] + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" + ] + }, + { + "type": "STRING", + "value": "with" } - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "cl" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - } - ] - }, - { - "type": "REPEAT", - "content": { + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "_gap" + "name": "_form" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_form" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_form" + } + } + ] } - }, - { + ] + }, + { + "type": "REPEAT", + "content": { "type": "SYMBOL", - "name": "_form" + "name": "_gap" } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_form" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] }, "do_clause": { "type": "PREC_LEFT", @@ -3010,8 +2959,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3082,8 +3039,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3112,8 +3077,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3164,8 +3137,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3220,8 +3201,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3250,8 +3239,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3280,8 +3277,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3310,8 +3315,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3340,8 +3353,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3370,8 +3391,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3415,8 +3444,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3479,8 +3516,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3538,8 +3583,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3568,8 +3621,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3598,8 +3659,16 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "cl" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "cl" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3819,140 +3888,177 @@ } }, "defun_header": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "keyword", - "content": { - "type": "SYMBOL", - "name": "defun_keyword" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, - { - "type": "FIELD", - "name": "function_name", - "content": { - "type": "SYMBOL", - "name": "_form" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "specifier", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "kwd_lit" - }, - { - "type": "SYMBOL", - "name": "sym_lit" - } - ] - } - ] - } - }, - { - "type": "BLANK" + "type": "PREC", + "value": 5, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "keyword", + "content": { + "type": "SYMBOL", + "name": "defun_keyword" } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, - { - "type": "FIELD", - "name": "lambda_list", - "content": { + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "list_lit" + "name": "unquoting_lit" }, { "type": "SYMBOL", - "name": "unquoting_lit" + "name": "unquote_splicing_lit" } ] } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "keyword", - "content": { - "type": "ALIAS", + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "keyword", "content": { - "type": "STRING", - "value": "lambda" - }, - "named": true, - "value": "defun_keyword" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_gap" - } - }, - { - "type": "FIELD", - "name": "lambda_list", - "content": { + "type": "SYMBOL", + "name": "defun_keyword" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "function_name", + "content": { + "type": "SYMBOL", + "name": "_form" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "list_lit" + "type": "FIELD", + "name": "specifier", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "kwd_lit" + }, + { + "type": "SYMBOL", + "name": "sym_lit" + } + ] + } + ] + } }, { - "type": "SYMBOL", - "name": "unquoting_lit" + "type": "BLANK" } ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "lambda_list", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_lit" + }, + { + "type": "SYMBOL", + "name": "unquoting_lit" + } + ] + } } - } - ] - } - ] + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "keyword", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "lambda" + }, + "named": true, + "value": "defun_keyword" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_gap" + } + }, + { + "type": "FIELD", + "name": "lambda_list", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "list_lit" + }, + { + "type": "SYMBOL", + "name": "unquoting_lit" + } + ] + } + } + ] + } + ] + } }, "array_dimension": { "type": "PREC", @@ -4339,6 +4445,17 @@ } ], "conflicts": [ + [ + "for_clause_word", + "package_lit" + ], + [ + "with_clause", + "package_lit" + ], + [ + "with_clause" + ], [ "for_clause" ], diff --git a/src/node-types.json b/src/node-types.json index e556dae5b..02e321c76 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -601,7 +601,7 @@ }, "lambda_list": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "list_lit", @@ -657,6 +657,14 @@ { "type": "dis_expr", "named": true + }, + { + "type": "unquote_splicing_lit", + "named": true + }, + { + "type": "unquoting_lit", + "named": true } ] } @@ -4310,18 +4318,10 @@ "type": "char_lit", "named": true }, - { - "type": "comment", - "named": true - }, { "type": "complex_num_lit", "named": true }, - { - "type": "dis_expr", - "named": true - }, { "type": "fancy_literal", "named": true @@ -4840,6 +4840,10 @@ "type": "until", "named": false }, + { + "type": "upfrom", + "named": false + }, { "type": "upto", "named": false diff --git a/src/parser.c b/src/parser.c index 2583cc9db..dc24d13a4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 3509 -#define LARGE_STATE_COUNT 166 -#define SYMBOL_COUNT 188 +#define STATE_COUNT 4165 +#define LARGE_STATE_COUNT 405 +#define SYMBOL_COUNT 184 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 122 +#define TOKEN_COUNT 118 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 20 -#define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 157 +#define MAX_ALIAS_SEQUENCE_LENGTH 14 +#define PRODUCTION_ID_COUNT 178 enum { sym__ws = 1, @@ -40,178 +40,174 @@ enum { aux_sym_str_lit_token2 = 13, anon_sym_TILDE = 14, aux_sym_char_lit_token1 = 15, - aux_sym_char_lit_token2 = 16, - aux_sym_char_lit_token3 = 17, - aux_sym_char_lit_token4 = 18, - aux_sym_char_lit_token5 = 19, - aux_sym_char_lit_token6 = 20, - sym_nil_lit = 21, - aux_sym_sym_lit_token1 = 22, - anon_sym_CARET = 23, - anon_sym_POUND_CARET = 24, - anon_sym_LPAREN = 25, - anon_sym_RPAREN = 26, - anon_sym_LBRACE = 27, - anon_sym_RBRACE = 28, - anon_sym_POUND0A = 29, - anon_sym_POUND0a = 30, - anon_sym_LBRACK = 31, - anon_sym_RBRACK = 32, - aux_sym_regex_lit_token1 = 33, - anon_sym_POUND_QMARK = 34, - anon_sym_POUND_QMARK_AT = 35, - anon_sym_POUND_SQUOTE = 36, - 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, - anon_sym_AMP = 50, - anon_sym_PIPE = 51, - aux_sym_format_directive_type_token1 = 52, - aux_sym_format_directive_type_token2 = 53, - anon_sym_LF = 54, - anon_sym_CR = 55, - aux_sym_format_directive_type_token3 = 56, - aux_sym_format_directive_type_token4 = 57, - aux_sym_format_directive_type_token5 = 58, - aux_sym_format_directive_type_token6 = 59, - anon_sym__ = 60, - aux_sym_format_directive_type_token7 = 61, - aux_sym_format_directive_type_token8 = 62, - aux_sym_format_directive_type_token9 = 63, - aux_sym_format_directive_type_token10 = 64, - anon_sym_SEMI = 65, - anon_sym_STAR = 66, - anon_sym_SLASH = 67, - anon_sym_QMARK = 68, - anon_sym_Newline = 69, - aux_sym_format_directive_type_token11 = 70, - anon_sym_cl = 71, - anon_sym_in = 72, - anon_sym_across = 73, - anon_sym_being = 74, - anon_sym_using = 75, - aux_sym_for_clause_word_token1 = 76, - anon_sym_below = 77, - anon_sym_above = 78, - anon_sym_from = 79, - anon_sym_to = 80, - anon_sym_upto = 81, - anon_sym_downto = 82, - anon_sym_downfrom = 83, - anon_sym_on = 84, - anon_sym_by = 85, - anon_sym_then = 86, - anon_sym_EQ = 87, - aux_sym_accumulation_verb_token1 = 88, - anon_sym_for = 89, - anon_sym_and = 90, - anon_sym_as = 91, - anon_sym_with = 92, - anon_sym_do = 93, - anon_sym_while = 94, - anon_sym_until = 95, - anon_sym_repeat = 96, - anon_sym_when = 97, - anon_sym_if = 98, - anon_sym_unless = 99, - anon_sym_always = 100, - anon_sym_thereis = 101, - anon_sym_never = 102, - anon_sym_else = 103, - anon_sym_into = 104, - anon_sym_finally = 105, - anon_sym_return = 106, - anon_sym_initially = 107, - anon_sym_loop = 108, - anon_sym_defun = 109, - anon_sym_defmacro = 110, - anon_sym_defgeneric = 111, - anon_sym_defmethod = 112, - anon_sym_lambda = 113, - anon_sym_POUNDP = 114, - anon_sym_POUNDp = 115, - aux_sym__sym_lit_without_slash_token1 = 116, - sym_self_referential_reader_macro = 117, - anon_sym_POUND_PLUS = 118, - anon_sym_POUND_DASH = 119, - anon_sym_POUNDC = 120, - anon_sym_POUNDc = 121, - sym_source = 122, - sym__gap = 123, - sym_dis_expr = 124, - sym__form = 125, - sym_num_lit = 126, - sym_kwd_lit = 127, - sym_str_lit = 128, - sym_char_lit = 129, - sym_sym_lit = 130, - sym__metadata_lit = 131, - sym_meta_lit = 132, - sym_old_meta_lit = 133, - sym_list_lit = 134, - sym__bare_list_lit = 135, - sym_map_lit = 136, - sym__bare_map_lit = 137, - sym_vec_lit = 138, - sym_set_lit = 139, - sym__bare_set_lit = 140, - sym_read_cond_lit = 141, - sym_splicing_read_cond_lit = 142, - sym_var_quoting_lit = 143, - sym_quoting_lit = 144, - sym_syn_quoting_lit = 145, - sym_unquote_splicing_lit = 146, - sym_unquoting_lit = 147, - sym_defun = 148, - sym__format_token = 149, - sym_format_prefix_parameters = 150, - sym_format_modifiers = 151, - sym_format_directive_type = 152, - sym_format_specifier = 153, - sym_for_clause_word = 154, - sym__for_part = 155, - sym_accumulation_verb = 156, - sym_for_clause = 157, - sym_with_clause = 158, - sym_do_clause = 159, - sym_while_clause = 160, - sym_repeat_clause = 161, - sym_condition_clause = 162, - sym_accumulation_clause = 163, - sym_termination_clause = 164, - sym_loop_clause = 165, - sym_loop_macro = 166, - sym_defun_keyword = 167, - sym_defun_header = 168, - sym_array_dimension = 169, - sym_path_lit = 170, - sym_package_lit = 171, - sym__package_lit_without_slash = 172, - sym__sym_lit_without_slash = 173, - sym_kwd_symbol = 174, - sym_include_reader_macro = 175, - sym_complex_num_lit = 176, - aux_sym_source_repeat1 = 177, - aux_sym_dis_expr_repeat1 = 178, - aux_sym_str_lit_repeat1 = 179, - aux_sym_list_lit_repeat1 = 180, - aux_sym__bare_list_lit_repeat1 = 181, - aux_sym_read_cond_lit_repeat1 = 182, - aux_sym_format_modifiers_repeat1 = 183, - aux_sym_for_clause_repeat1 = 184, - aux_sym_do_clause_repeat1 = 185, - aux_sym_loop_macro_repeat1 = 186, - aux_sym__sym_lit_without_slash_repeat1 = 187, + sym_nil_lit = 16, + aux_sym_sym_lit_token1 = 17, + anon_sym_CARET = 18, + anon_sym_POUND_CARET = 19, + anon_sym_LPAREN = 20, + anon_sym_RPAREN = 21, + anon_sym_LBRACE = 22, + anon_sym_RBRACE = 23, + anon_sym_POUND0A = 24, + anon_sym_POUND0a = 25, + anon_sym_LBRACK = 26, + anon_sym_RBRACK = 27, + aux_sym_regex_lit_token1 = 28, + anon_sym_POUND_QMARK = 29, + anon_sym_POUND_QMARK_AT = 30, + anon_sym_POUND_SQUOTE = 31, + anon_sym_AT = 32, + anon_sym_SQUOTE = 33, + anon_sym_BQUOTE = 34, + anon_sym_COMMA_AT = 35, + anon_sym_COMMA = 36, + sym_block_comment = 37, + sym_fancy_literal = 38, + aux_sym__format_token_token1 = 39, + anon_sym_v = 40, + anon_sym_V = 41, + anon_sym_AT_COLON = 42, + anon_sym_COLON_AT = 43, + anon_sym_PERCENT = 44, + anon_sym_AMP = 45, + anon_sym_PIPE = 46, + aux_sym_format_directive_type_token1 = 47, + aux_sym_format_directive_type_token2 = 48, + anon_sym_LF = 49, + anon_sym_CR = 50, + aux_sym_format_directive_type_token3 = 51, + aux_sym_format_directive_type_token4 = 52, + aux_sym_format_directive_type_token5 = 53, + aux_sym_format_directive_type_token6 = 54, + anon_sym__ = 55, + aux_sym_format_directive_type_token7 = 56, + aux_sym_format_directive_type_token8 = 57, + aux_sym_format_directive_type_token9 = 58, + aux_sym_format_directive_type_token10 = 59, + anon_sym_SEMI = 60, + anon_sym_STAR = 61, + anon_sym_SLASH = 62, + anon_sym_QMARK = 63, + anon_sym_Newline = 64, + aux_sym_format_directive_type_token11 = 65, + anon_sym_cl = 66, + anon_sym_in = 67, + anon_sym_across = 68, + anon_sym_being = 69, + anon_sym_using = 70, + aux_sym_for_clause_word_token1 = 71, + anon_sym_below = 72, + anon_sym_above = 73, + anon_sym_from = 74, + anon_sym_to = 75, + anon_sym_upto = 76, + anon_sym_upfrom = 77, + anon_sym_downto = 78, + anon_sym_downfrom = 79, + anon_sym_on = 80, + anon_sym_by = 81, + anon_sym_then = 82, + anon_sym_EQ = 83, + aux_sym_accumulation_verb_token1 = 84, + anon_sym_for = 85, + anon_sym_and = 86, + anon_sym_as = 87, + anon_sym_with = 88, + anon_sym_do = 89, + anon_sym_while = 90, + anon_sym_until = 91, + anon_sym_repeat = 92, + anon_sym_when = 93, + anon_sym_if = 94, + anon_sym_unless = 95, + anon_sym_always = 96, + anon_sym_thereis = 97, + anon_sym_never = 98, + anon_sym_else = 99, + anon_sym_into = 100, + anon_sym_finally = 101, + anon_sym_return = 102, + anon_sym_initially = 103, + anon_sym_loop = 104, + anon_sym_defun = 105, + anon_sym_defmacro = 106, + anon_sym_defgeneric = 107, + anon_sym_defmethod = 108, + anon_sym_lambda = 109, + anon_sym_POUNDP = 110, + anon_sym_POUNDp = 111, + aux_sym__sym_lit_without_slash_token1 = 112, + sym_self_referential_reader_macro = 113, + anon_sym_POUND_PLUS = 114, + anon_sym_POUND_DASH = 115, + anon_sym_POUNDC = 116, + anon_sym_POUNDc = 117, + sym_source = 118, + sym__gap = 119, + sym_dis_expr = 120, + sym__form = 121, + sym_num_lit = 122, + sym_kwd_lit = 123, + sym_str_lit = 124, + sym_char_lit = 125, + sym_sym_lit = 126, + sym__metadata_lit = 127, + sym_meta_lit = 128, + sym_old_meta_lit = 129, + sym_list_lit = 130, + sym__bare_list_lit = 131, + sym_map_lit = 132, + sym__bare_map_lit = 133, + sym_vec_lit = 134, + sym_set_lit = 135, + sym__bare_set_lit = 136, + sym_read_cond_lit = 137, + sym_splicing_read_cond_lit = 138, + sym_var_quoting_lit = 139, + sym_quoting_lit = 140, + sym_syn_quoting_lit = 141, + sym_unquote_splicing_lit = 142, + sym_unquoting_lit = 143, + sym_defun = 144, + sym__format_token = 145, + sym_format_prefix_parameters = 146, + sym_format_modifiers = 147, + sym_format_directive_type = 148, + sym_format_specifier = 149, + sym_for_clause_word = 150, + sym__for_part = 151, + sym_accumulation_verb = 152, + sym_for_clause = 153, + sym_with_clause = 154, + sym_do_clause = 155, + sym_while_clause = 156, + sym_repeat_clause = 157, + sym_condition_clause = 158, + sym_accumulation_clause = 159, + sym_termination_clause = 160, + sym_loop_clause = 161, + sym_loop_macro = 162, + sym_defun_keyword = 163, + sym_defun_header = 164, + sym_array_dimension = 165, + sym_path_lit = 166, + sym_package_lit = 167, + sym__package_lit_without_slash = 168, + sym__sym_lit_without_slash = 169, + sym_kwd_symbol = 170, + sym_include_reader_macro = 171, + sym_complex_num_lit = 172, + aux_sym_source_repeat1 = 173, + aux_sym_dis_expr_repeat1 = 174, + aux_sym_str_lit_repeat1 = 175, + aux_sym_list_lit_repeat1 = 176, + aux_sym__bare_list_lit_repeat1 = 177, + aux_sym_read_cond_lit_repeat1 = 178, + aux_sym_format_modifiers_repeat1 = 179, + aux_sym_for_clause_repeat1 = 180, + aux_sym_do_clause_repeat1 = 181, + aux_sym_loop_macro_repeat1 = 182, + aux_sym__sym_lit_without_slash_repeat1 = 183, }; static const char * const ts_symbol_names[] = { @@ -231,11 +227,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_str_lit_token2] = "str_lit_token2", [anon_sym_TILDE] = "~", [aux_sym_char_lit_token1] = "char_lit_token1", - [aux_sym_char_lit_token2] = "char_lit_token2", - [aux_sym_char_lit_token3] = "char_lit_token3", - [aux_sym_char_lit_token4] = "char_lit_token4", - [aux_sym_char_lit_token5] = "char_lit_token5", - [aux_sym_char_lit_token6] = "char_lit_token6", [sym_nil_lit] = "nil_lit", [aux_sym_sym_lit_token1] = "sym_lit_token1", [anon_sym_CARET] = "^", @@ -297,6 +288,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_from] = "from", [anon_sym_to] = "to", [anon_sym_upto] = "upto", + [anon_sym_upfrom] = "upfrom", [anon_sym_downto] = "downto", [anon_sym_downfrom] = "downfrom", [anon_sym_on] = "on", @@ -422,11 +414,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_str_lit_token2] = aux_sym_str_lit_token2, [anon_sym_TILDE] = anon_sym_TILDE, [aux_sym_char_lit_token1] = aux_sym_char_lit_token1, - [aux_sym_char_lit_token2] = aux_sym_char_lit_token2, - [aux_sym_char_lit_token3] = aux_sym_char_lit_token3, - [aux_sym_char_lit_token4] = aux_sym_char_lit_token4, - [aux_sym_char_lit_token5] = aux_sym_char_lit_token5, - [aux_sym_char_lit_token6] = aux_sym_char_lit_token6, [sym_nil_lit] = sym_nil_lit, [aux_sym_sym_lit_token1] = aux_sym_sym_lit_token1, [anon_sym_CARET] = anon_sym_CARET, @@ -488,6 +475,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_from] = anon_sym_from, [anon_sym_to] = anon_sym_to, [anon_sym_upto] = anon_sym_upto, + [anon_sym_upfrom] = anon_sym_upfrom, [anon_sym_downto] = anon_sym_downto, [anon_sym_downfrom] = anon_sym_downfrom, [anon_sym_on] = anon_sym_on, @@ -661,26 +649,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_char_lit_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_char_lit_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_char_lit_token4] = { - .visible = false, - .named = false, - }, - [aux_sym_char_lit_token5] = { - .visible = false, - .named = false, - }, - [aux_sym_char_lit_token6] = { - .visible = false, - .named = false, - }, [sym_nil_lit] = { .visible = true, .named = true, @@ -925,6 +893,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_upfrom] = { + .visible = true, + .named = false, + }, [anon_sym_downto] = { .visible = true, .named = false, @@ -1424,135 +1396,156 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [24] = {.index = 50, .length = 2}, [25] = {.index = 52, .length = 2}, [26] = {.index = 54, .length = 2}, - [27] = {.index = 56, .length = 4}, - [28] = {.index = 60, .length = 4}, - [29] = {.index = 64, .length = 4}, - [30] = {.index = 68, .length = 2}, - [31] = {.index = 70, .length = 5}, - [32] = {.index = 75, .length = 6}, - [33] = {.index = 81, .length = 5}, - [34] = {.index = 46, .length = 1}, - [35] = {.index = 86, .length = 5}, - [37] = {.index = 91, .length = 1}, + [27] = {.index = 56, .length = 1}, + [28] = {.index = 57, .length = 4}, + [29] = {.index = 61, .length = 4}, + [30] = {.index = 65, .length = 4}, + [31] = {.index = 69, .length = 2}, + [32] = {.index = 71, .length = 5}, + [33] = {.index = 76, .length = 6}, + [34] = {.index = 82, .length = 5}, + [35] = {.index = 46, .length = 1}, + [36] = {.index = 87, .length = 5}, [38] = {.index = 92, .length = 1}, [39] = {.index = 93, .length = 1}, - [40] = {.index = 94, .length = 2}, - [41] = {.index = 96, .length = 2}, - [42] = {.index = 98, .length = 4}, - [43] = {.index = 102, .length = 4}, - [44] = {.index = 106, .length = 5}, - [45] = {.index = 111, .length = 5}, - [46] = {.index = 116, .length = 6}, - [47] = {.index = 122, .length = 5}, - [48] = {.index = 127, .length = 7}, - [49] = {.index = 134, .length = 2}, - [50] = {.index = 136, .length = 2}, - [51] = {.index = 138, .length = 3}, - [52] = {.index = 141, .length = 1}, - [53] = {.index = 142, .length = 4}, - [54] = {.index = 146, .length = 5}, - [55] = {.index = 151, .length = 4}, - [56] = {.index = 155, .length = 4}, - [57] = {.index = 159, .length = 5}, - [58] = {.index = 164, .length = 3}, - [59] = {.index = 167, .length = 7}, - [60] = {.index = 174, .length = 7}, - [61] = {.index = 181, .length = 2}, - [62] = {.index = 183, .length = 1}, - [63] = {.index = 184, .length = 5}, - [64] = {.index = 189, .length = 3}, - [65] = {.index = 192, .length = 2}, - [66] = {.index = 194, .length = 4}, - [67] = {.index = 198, .length = 5}, - [68] = {.index = 203, .length = 6}, - [69] = {.index = 209, .length = 5}, - [70] = {.index = 214, .length = 4}, - [71] = {.index = 218, .length = 3}, - [72] = {.index = 221, .length = 3}, - [73] = {.index = 224, .length = 7}, - [74] = {.index = 231, .length = 5}, - [75] = {.index = 236, .length = 3}, - [76] = {.index = 239, .length = 1}, - [77] = {.index = 240, .length = 6}, - [78] = {.index = 246, .length = 5}, - [79] = {.index = 251, .length = 2}, - [80] = {.index = 253, .length = 4}, - [81] = {.index = 257, .length = 2}, - [82] = {.index = 259, .length = 2}, - [83] = {.index = 261, .length = 6}, - [84] = {.index = 267, .length = 5}, - [85] = {.index = 272, .length = 6}, - [86] = {.index = 278, .length = 3}, - [87] = {.index = 281, .length = 3}, - [88] = {.index = 284, .length = 5}, - [89] = {.index = 289, .length = 5}, - [90] = {.index = 294, .length = 5}, - [91] = {.index = 299, .length = 3}, - [92] = {.index = 302, .length = 2}, - [93] = {.index = 304, .length = 6}, - [94] = {.index = 310, .length = 2}, - [95] = {.index = 312, .length = 4}, - [96] = {.index = 316, .length = 5}, - [97] = {.index = 321, .length = 2}, - [98] = {.index = 323, .length = 4}, - [99] = {.index = 327, .length = 6}, - [100] = {.index = 333, .length = 3}, - [101] = {.index = 336, .length = 5}, - [102] = {.index = 341, .length = 5}, - [103] = {.index = 346, .length = 6}, - [104] = {.index = 352, .length = 5}, - [105] = {.index = 357, .length = 2}, - [106] = {.index = 359, .length = 4}, - [107] = {.index = 363, .length = 2}, - [108] = {.index = 365, .length = 2}, - [109] = {.index = 367, .length = 4}, - [110] = {.index = 371, .length = 5}, - [111] = {.index = 376, .length = 2}, - [112] = {.index = 378, .length = 4}, - [113] = {.index = 382, .length = 5}, - [114] = {.index = 387, .length = 5}, - [115] = {.index = 392, .length = 6}, - [116] = {.index = 398, .length = 2}, - [117] = {.index = 400, .length = 4}, - [118] = {.index = 404, .length = 5}, - [119] = {.index = 409, .length = 2}, - [120] = {.index = 411, .length = 4}, - [121] = {.index = 415, .length = 4}, - [122] = {.index = 419, .length = 2}, - [123] = {.index = 421, .length = 5}, - [124] = {.index = 426, .length = 2}, - [125] = {.index = 428, .length = 4}, - [126] = {.index = 432, .length = 5}, - [127] = {.index = 437, .length = 2}, - [128] = {.index = 439, .length = 4}, - [129] = {.index = 443, .length = 5}, - [130] = {.index = 448, .length = 2}, - [131] = {.index = 450, .length = 4}, - [132] = {.index = 454, .length = 5}, - [133] = {.index = 459, .length = 4}, - [134] = {.index = 463, .length = 5}, - [135] = {.index = 468, .length = 4}, - [136] = {.index = 472, .length = 2}, - [137] = {.index = 474, .length = 5}, - [138] = {.index = 479, .length = 4}, - [139] = {.index = 483, .length = 2}, - [140] = {.index = 485, .length = 5}, - [141] = {.index = 490, .length = 2}, - [142] = {.index = 492, .length = 4}, - [143] = {.index = 496, .length = 5}, - [144] = {.index = 501, .length = 5}, - [145] = {.index = 506, .length = 4}, - [146] = {.index = 510, .length = 5}, - [147] = {.index = 515, .length = 4}, - [148] = {.index = 519, .length = 5}, - [149] = {.index = 524, .length = 4}, - [150] = {.index = 528, .length = 2}, - [151] = {.index = 530, .length = 5}, - [152] = {.index = 535, .length = 5}, - [153] = {.index = 540, .length = 5}, - [154] = {.index = 545, .length = 4}, - [155] = {.index = 549, .length = 5}, - [156] = {.index = 554, .length = 5}, + [40] = {.index = 94, .length = 1}, + [41] = {.index = 95, .length = 2}, + [42] = {.index = 97, .length = 2}, + [43] = {.index = 99, .length = 4}, + [44] = {.index = 103, .length = 4}, + [45] = {.index = 107, .length = 5}, + [46] = {.index = 112, .length = 5}, + [47] = {.index = 117, .length = 6}, + [48] = {.index = 123, .length = 5}, + [49] = {.index = 128, .length = 7}, + [50] = {.index = 135, .length = 2}, + [51] = {.index = 137, .length = 2}, + [52] = {.index = 139, .length = 1}, + [53] = {.index = 140, .length = 3}, + [54] = {.index = 143, .length = 2}, + [55] = {.index = 145, .length = 3}, + [56] = {.index = 148, .length = 4}, + [57] = {.index = 152, .length = 5}, + [58] = {.index = 157, .length = 4}, + [59] = {.index = 161, .length = 4}, + [60] = {.index = 165, .length = 5}, + [61] = {.index = 170, .length = 3}, + [62] = {.index = 173, .length = 7}, + [63] = {.index = 180, .length = 7}, + [64] = {.index = 187, .length = 2}, + [65] = {.index = 189, .length = 3}, + [66] = {.index = 192, .length = 2}, + [67] = {.index = 194, .length = 3}, + [68] = {.index = 197, .length = 1}, + [69] = {.index = 198, .length = 5}, + [70] = {.index = 203, .length = 2}, + [71] = {.index = 205, .length = 4}, + [72] = {.index = 209, .length = 3}, + [73] = {.index = 212, .length = 4}, + [74] = {.index = 216, .length = 5}, + [75] = {.index = 221, .length = 6}, + [76] = {.index = 227, .length = 5}, + [77] = {.index = 232, .length = 4}, + [78] = {.index = 236, .length = 3}, + [79] = {.index = 239, .length = 3}, + [80] = {.index = 242, .length = 7}, + [81] = {.index = 249, .length = 5}, + [82] = {.index = 254, .length = 5}, + [83] = {.index = 259, .length = 3}, + [84] = {.index = 262, .length = 2}, + [85] = {.index = 264, .length = 4}, + [86] = {.index = 268, .length = 3}, + [87] = {.index = 271, .length = 2}, + [88] = {.index = 273, .length = 3}, + [89] = {.index = 276, .length = 1}, + [90] = {.index = 277, .length = 6}, + [91] = {.index = 283, .length = 2}, + [92] = {.index = 285, .length = 4}, + [93] = {.index = 289, .length = 4}, + [94] = {.index = 293, .length = 2}, + [95] = {.index = 295, .length = 6}, + [96] = {.index = 301, .length = 5}, + [97] = {.index = 306, .length = 6}, + [98] = {.index = 312, .length = 3}, + [99] = {.index = 315, .length = 3}, + [100] = {.index = 318, .length = 5}, + [101] = {.index = 323, .length = 5}, + [102] = {.index = 328, .length = 6}, + [103] = {.index = 334, .length = 5}, + [104] = {.index = 339, .length = 2}, + [105] = {.index = 341, .length = 4}, + [106] = {.index = 345, .length = 4}, + [107] = {.index = 349, .length = 2}, + [108] = {.index = 351, .length = 4}, + [109] = {.index = 355, .length = 3}, + [110] = {.index = 358, .length = 3}, + [111] = {.index = 361, .length = 2}, + [112] = {.index = 363, .length = 3}, + [113] = {.index = 366, .length = 2}, + [114] = {.index = 368, .length = 4}, + [115] = {.index = 372, .length = 4}, + [116] = {.index = 376, .length = 6}, + [117] = {.index = 382, .length = 3}, + [118] = {.index = 385, .length = 5}, + [119] = {.index = 390, .length = 5}, + [120] = {.index = 395, .length = 6}, + [121] = {.index = 401, .length = 2}, + [122] = {.index = 403, .length = 4}, + [123] = {.index = 407, .length = 4}, + [124] = {.index = 411, .length = 2}, + [125] = {.index = 413, .length = 4}, + [126] = {.index = 417, .length = 4}, + [127] = {.index = 421, .length = 5}, + [128] = {.index = 426, .length = 2}, + [129] = {.index = 428, .length = 4}, + [130] = {.index = 432, .length = 3}, + [131] = {.index = 435, .length = 2}, + [132] = {.index = 437, .length = 4}, + [133] = {.index = 441, .length = 4}, + [134] = {.index = 445, .length = 5}, + [135] = {.index = 450, .length = 2}, + [136] = {.index = 452, .length = 4}, + [137] = {.index = 456, .length = 4}, + [138] = {.index = 460, .length = 2}, + [139] = {.index = 462, .length = 4}, + [140] = {.index = 466, .length = 4}, + [141] = {.index = 470, .length = 6}, + [142] = {.index = 476, .length = 2}, + [143] = {.index = 478, .length = 4}, + [144] = {.index = 482, .length = 4}, + [145] = {.index = 486, .length = 4}, + [146] = {.index = 490, .length = 2}, + [147] = {.index = 492, .length = 4}, + [148] = {.index = 496, .length = 4}, + [149] = {.index = 500, .length = 2}, + [150] = {.index = 502, .length = 4}, + [151] = {.index = 506, .length = 2}, + [152] = {.index = 508, .length = 4}, + [153] = {.index = 512, .length = 4}, + [154] = {.index = 516, .length = 2}, + [155] = {.index = 518, .length = 4}, + [156] = {.index = 522, .length = 4}, + [157] = {.index = 526, .length = 4}, + [158] = {.index = 530, .length = 4}, + [159] = {.index = 534, .length = 4}, + [160] = {.index = 538, .length = 4}, + [161] = {.index = 542, .length = 4}, + [162] = {.index = 546, .length = 2}, + [163] = {.index = 548, .length = 4}, + [164] = {.index = 552, .length = 2}, + [165] = {.index = 554, .length = 4}, + [166] = {.index = 558, .length = 4}, + [167] = {.index = 562, .length = 4}, + [168] = {.index = 566, .length = 4}, + [169] = {.index = 570, .length = 4}, + [170] = {.index = 574, .length = 4}, + [171] = {.index = 578, .length = 4}, + [172] = {.index = 582, .length = 2}, + [173] = {.index = 584, .length = 4}, + [174] = {.index = 588, .length = 4}, + [175] = {.index = 592, .length = 4}, + [176] = {.index = 596, .length = 4}, + [177] = {.index = 600, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1635,96 +1628,98 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_keyword, 0}, {field_lambda_list, 1}, [56] = + {field_keyword, 0}, + [57] = {field_close, 2}, {field_open, 0}, {field_open, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [60] = + [61] = {field_open, 0, .inherited = true}, {field_open, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [64] = + [65] = {field_close, 2, .inherited = true}, {field_marker, 0}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [68] = + [69] = {field_package, 0}, {field_symbol, 2}, - [70] = + [71] = {field_condition, 1}, {field_marker, 0}, {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_target, 2}, - [75] = + [76] = {field_close, 2, .inherited = true}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [81] = + [82] = {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 2, .inherited = true}, {field_value, 2}, - [86] = + [87] = {field_close, 3}, {field_marker, 0}, {field_open, 1}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [91] = - {field_repetitions, 0}, [92] = - {field_numberOfArgs, 0}, + {field_repetitions, 0}, [93] = - {field_open, 1, .inherited = true}, + {field_numberOfArgs, 0}, [94] = + {field_open, 1, .inherited = true}, + [95] = {field_close, 3}, {field_open, 0}, - [96] = + [97] = {field_keyword, 0}, {field_lambda_list, 2}, - [98] = + [99] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 2}, {field_open, 1, .inherited = true}, - [102] = + [103] = {field_close, 3}, {field_open, 0}, {field_open, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [106] = + [107] = {field_condition, 1}, {field_marker, 0}, {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_target, 3}, - [111] = + [112] = {field_condition, 2}, {field_marker, 0}, {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_target, 3}, - [116] = + [117] = {field_close, 3, .inherited = true}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 3, .inherited = true}, {field_value, 3, .inherited = true}, - [122] = + [123] = {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_open, 3, .inherited = true}, {field_value, 3}, - [127] = + [128] = {field_condition, 2}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1732,50 +1727,57 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_target, 3}, - [134] = + [135] = {field_package, 1, .inherited = true}, {field_symbol, 1, .inherited = true}, - [136] = + [137] = {field_close, 4}, {field_open, 0}, - [138] = + [139] = + {field_open, 2, .inherited = true}, + [140] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_variable, 1}, - [141] = + [143] = + {field_open, 1, .inherited = true}, + {field_open, 2, .inherited = true}, + [145] = + {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, - [142] = + {field_type, 2}, + [148] = {field_close, 4}, {field_open, 0}, {field_open, 3, .inherited = true}, {field_value, 3, .inherited = true}, - [146] = + [152] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 1, .inherited = true}, {field_specifier, 2}, - [151] = + [157] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 1, .inherited = true}, - [155] = + [161] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 3}, {field_open, 2, .inherited = true}, - [159] = + [165] = {field_condition, 2}, {field_marker, 0}, {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [164] = + [170] = {field_imaginary, 3}, {field_marker, 0}, {field_real, 2}, - [167] = + [173] = {field_condition, 2}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1783,7 +1785,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [174] = + [180] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1791,62 +1793,78 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_target, 4}, - [181] = + [187] = {field_close, 5}, {field_open, 0}, - [183] = + [189] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_variable, 2}, + [192] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + [194] = + {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - [184] = + {field_type, 3}, + [197] = + {field_open, 3, .inherited = true}, + [198] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_type, 2}, {field_variable, 1}, - [189] = + [203] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + [205] = + {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - {field_variable, 2}, - [192] = + {field_type, 2}, + [209] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, - [194] = + {field_type, 3}, + [212] = {field_close, 5}, {field_open, 0}, {field_open, 4, .inherited = true}, {field_value, 4, .inherited = true}, - [198] = + [216] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 1, .inherited = true}, {field_specifier, 2}, - [203] = + [221] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 1, .inherited = true}, {field_specifier, 2}, {field_specifier, 3}, - [209] = + [227] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 2, .inherited = true}, {field_specifier, 3}, - [214] = + [232] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 4}, {field_open, 2, .inherited = true}, - [218] = + [236] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 2}, - [221] = + [239] = {field_imaginary, 4}, {field_marker, 0}, {field_real, 3}, - [224] = + [242] = {field_condition, 3}, {field_marker, 1}, {field_meta, 0, .inherited = true}, @@ -1854,416 +1872,457 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_target, 5}, - [231] = + [249] = {field_imaginary, 4}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [236] = + [254] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_type, 3}, + {field_variable, 2}, + [259] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_variable, 3}, - [239] = + [262] = + {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - [240] = - {field_open, 1, .inherited = true}, + [264] = + {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, - {field_type, 2}, {field_type, 3}, - {field_variable, 1}, - [246] = + [268] = {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_type, 4}, + [271] = + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + [273] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, + {field_type, 4}, + [276] = + {field_open, 4, .inherited = true}, + [277] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_type, 2}, {field_type, 3}, - {field_variable, 2}, - [251] = + {field_variable, 1}, + [283] = {field_open, 1, .inherited = true}, {field_open, 4, .inherited = true}, - [253] = + [285] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_type, 2}, - [257] = - {field_open, 2, .inherited = true}, + [289] = + {field_open, 1, .inherited = true}, + {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, - [259] = + {field_type, 3}, + [293] = {field_close, 6}, {field_open, 0}, - [261] = + [295] = {field_function_name, 1}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 1, .inherited = true}, {field_specifier, 2}, {field_specifier, 3}, - [267] = + [301] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 2, .inherited = true}, {field_specifier, 3}, - [272] = + [306] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 5}, {field_open, 2, .inherited = true}, {field_specifier, 3}, {field_specifier, 4}, - [278] = + [312] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 3}, - [281] = + [315] = {field_imaginary, 5}, {field_marker, 0}, {field_real, 4}, - [284] = + [318] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 3}, - [289] = + [323] = {field_imaginary, 5}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [294] = + [328] = + {field_open, 2, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 3}, + {field_type, 4}, + {field_variable, 2}, + [334] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 4}, {field_variable, 3}, - [299] = - {field_open, 4, .inherited = true}, + [339] = + {field_open, 2, .inherited = true}, {field_open, 5, .inherited = true}, - {field_variable, 4}, - [302] = + [341] = + {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, - [304] = + {field_type, 3}, + [345] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, - {field_type, 3}, {field_type, 4}, - {field_variable, 2}, - [310] = + [349] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + [351] = + {field_open, 3, .inherited = true}, + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 4}, + [355] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 5}, + [358] = + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_variable, 4}, + [361] = + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + [363] = + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_type, 5}, + [366] = {field_open, 1, .inherited = true}, {field_open, 5, .inherited = true}, - [312] = + [368] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 5, .inherited = true}, {field_type, 2}, - [316] = + [372] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, - {field_type, 2}, - {field_type, 3}, - [321] = - {field_open, 2, .inherited = true}, - {field_open, 5, .inherited = true}, - [323] = - {field_open, 2, .inherited = true}, - {field_open, 3, .inherited = true}, - {field_open, 5, .inherited = true}, {field_type, 3}, - [327] = + [376] = {field_function_name, 2}, {field_keyword, 0}, {field_lambda_list, 6}, {field_open, 2, .inherited = true}, {field_specifier, 3}, {field_specifier, 4}, - [333] = + [382] = {field_imaginary, 6}, {field_marker, 0}, {field_real, 4}, - [336] = + [385] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 4}, - [341] = + [390] = {field_imaginary, 6}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 5}, - [346] = + [395] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 4}, {field_type, 5}, {field_variable, 3}, - [352] = + [401] = + {field_open, 2, .inherited = true}, + {field_open, 6, .inherited = true}, + [403] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 3}, + [407] = + {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, - {field_type, 5}, - {field_variable, 4}, - [357] = + {field_type, 4}, + [411] = {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, - [359] = + [413] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 4}, - [363] = + [417] = + {field_open, 3, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 5}, + [421] = {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, {field_open, 6, .inherited = true}, - [365] = + {field_type, 5}, + {field_variable, 4}, + [426] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + [428] = + {field_open, 4, .inherited = true}, + {field_open, 5, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 5}, + [432] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_type, 6}, + [435] = {field_open, 1, .inherited = true}, {field_open, 6, .inherited = true}, - [367] = + [437] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 6, .inherited = true}, {field_type, 2}, - [371] = + [441] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 6, .inherited = true}, - {field_type, 2}, {field_type, 3}, - [376] = - {field_open, 2, .inherited = true}, - {field_open, 6, .inherited = true}, - [378] = - {field_open, 2, .inherited = true}, - {field_open, 3, .inherited = true}, - {field_open, 6, .inherited = true}, - {field_type, 3}, - [382] = - {field_open, 2, .inherited = true}, - {field_open, 4, .inherited = true}, - {field_open, 6, .inherited = true}, - {field_type, 3}, - {field_type, 4}, - [387] = + [445] = {field_imaginary, 7}, {field_marker, 1}, {field_meta, 0, .inherited = true}, {field_old_meta, 0, .inherited = true}, {field_real, 5}, - [392] = + [450] = + {field_open, 2, .inherited = true}, + {field_open, 7, .inherited = true}, + [452] = + {field_open, 2, .inherited = true}, + {field_open, 3, .inherited = true}, + {field_open, 7, .inherited = true}, + {field_type, 3}, + [456] = + {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - {field_open, 6, .inherited = true}, {field_open, 7, .inherited = true}, - {field_type, 5}, - {field_type, 6}, - {field_variable, 4}, - [398] = + {field_type, 4}, + [460] = {field_open, 3, .inherited = true}, {field_open, 7, .inherited = true}, - [400] = + [462] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 4}, - [404] = + [466] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 7, .inherited = true}, - {field_type, 4}, {field_type, 5}, - [409] = + [470] = {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, {field_open, 7, .inherited = true}, - [411] = + {field_type, 5}, + {field_type, 6}, + {field_variable, 4}, + [476] = + {field_open, 4, .inherited = true}, + {field_open, 7, .inherited = true}, + [478] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 5}, - [415] = + [482] = + {field_open, 4, .inherited = true}, + {field_open, 6, .inherited = true}, + {field_open, 7, .inherited = true}, + {field_type, 6}, + [486] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 7, .inherited = true}, {field_type, 2}, - [419] = + [490] = {field_open, 1, .inherited = true}, {field_open, 7, .inherited = true}, - [421] = + [492] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 7, .inherited = true}, - {field_type, 2}, {field_type, 3}, - [426] = - {field_open, 2, .inherited = true}, - {field_open, 7, .inherited = true}, - [428] = + [496] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - {field_open, 7, .inherited = true}, + {field_open, 8, .inherited = true}, {field_type, 3}, - [432] = + [500] = + {field_open, 2, .inherited = true}, + {field_open, 8, .inherited = true}, + [502] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - {field_open, 7, .inherited = true}, - {field_type, 3}, + {field_open, 8, .inherited = true}, {field_type, 4}, - [437] = + [506] = {field_open, 3, .inherited = true}, {field_open, 8, .inherited = true}, - [439] = + [508] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 4}, - [443] = + [512] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 8, .inherited = true}, - {field_type, 4}, {field_type, 5}, - [448] = + [516] = {field_open, 4, .inherited = true}, {field_open, 8, .inherited = true}, - [450] = + [518] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 5}, - [454] = + [522] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 8, .inherited = true}, - {field_type, 5}, {field_type, 6}, - [459] = + [526] = {field_open, 1, .inherited = true}, {field_open, 2, .inherited = true}, {field_open, 8, .inherited = true}, {field_type, 2}, - [463] = + [530] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 8, .inherited = true}, - {field_type, 2}, {field_type, 3}, - [468] = + [534] = {field_open, 2, .inherited = true}, {field_open, 3, .inherited = true}, - {field_open, 8, .inherited = true}, + {field_open, 9, .inherited = true}, {field_type, 3}, - [472] = - {field_open, 2, .inherited = true}, - {field_open, 8, .inherited = true}, - [474] = + [538] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - {field_open, 8, .inherited = true}, - {field_type, 3}, + {field_open, 9, .inherited = true}, {field_type, 4}, - [479] = + [542] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 9, .inherited = true}, {field_type, 4}, - [483] = + [546] = {field_open, 3, .inherited = true}, {field_open, 9, .inherited = true}, - [485] = + [548] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 9, .inherited = true}, - {field_type, 4}, {field_type, 5}, - [490] = + [552] = {field_open, 4, .inherited = true}, {field_open, 9, .inherited = true}, - [492] = + [554] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 9, .inherited = true}, {field_type, 5}, - [496] = + [558] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 9, .inherited = true}, - {field_type, 5}, {field_type, 6}, - [501] = + [562] = {field_open, 1, .inherited = true}, {field_open, 3, .inherited = true}, {field_open, 9, .inherited = true}, - {field_type, 2}, {field_type, 3}, - [506] = - {field_open, 2, .inherited = true}, - {field_open, 3, .inherited = true}, - {field_open, 9, .inherited = true}, - {field_type, 3}, - [510] = + [566] = {field_open, 2, .inherited = true}, {field_open, 4, .inherited = true}, - {field_open, 9, .inherited = true}, - {field_type, 3}, + {field_open, 10, .inherited = true}, {field_type, 4}, - [515] = + [570] = {field_open, 3, .inherited = true}, {field_open, 4, .inherited = true}, {field_open, 10, .inherited = true}, {field_type, 4}, - [519] = + [574] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 10, .inherited = true}, - {field_type, 4}, {field_type, 5}, - [524] = + [578] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 10, .inherited = true}, {field_type, 5}, - [528] = + [582] = {field_open, 4, .inherited = true}, {field_open, 10, .inherited = true}, - [530] = + [584] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 10, .inherited = true}, - {field_type, 5}, {field_type, 6}, - [535] = - {field_open, 2, .inherited = true}, - {field_open, 4, .inherited = true}, - {field_open, 10, .inherited = true}, - {field_type, 3}, - {field_type, 4}, - [540] = + [588] = {field_open, 3, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 11, .inherited = true}, - {field_type, 4}, {field_type, 5}, - [545] = + [592] = {field_open, 4, .inherited = true}, {field_open, 5, .inherited = true}, {field_open, 11, .inherited = true}, {field_type, 5}, - [549] = + [596] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 11, .inherited = true}, - {field_type, 5}, {field_type, 6}, - [554] = + [600] = {field_open, 4, .inherited = true}, {field_open, 6, .inherited = true}, {field_open, 12, .inherited = true}, - {field_type, 5}, {field_type, 6}, }; @@ -2288,12 +2347,12 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [23] = { [0] = sym_num_lit, }, - [34] = { + [35] = { [1] = sym_vec_lit, [2] = sym_vec_lit, [3] = sym_vec_lit, }, - [36] = { + [37] = { [0] = sym_sym_lit, }, }; @@ -2322,20 +2381,6 @@ static inline bool aux_sym_str_lit_token1_character_set_1(int32_t c) { : (c <= 't' || c == 'x')))); } -static inline bool aux_sym_char_lit_token1_character_set_1(int32_t c) { - return (c < 'b' - ? (c < 'N' - ? (c < 'L' - ? c == 0 - : c <= 'L') - : (c <= 'N' || (c >= 'R' && c <= 'S'))) - : (c <= 'b' || (c < 'n' - ? (c < 'l' - ? c == 'f' - : c <= 'l') - : (c <= 'o' || (c >= 'r' && c <= 'u'))))); -} - static inline bool aux_sym_sym_lit_token1_character_set_1(int32_t c) { return (c < '}' ? (c < ')' @@ -2863,57 +2908,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - 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(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 (eof) ADVANCE(249); + if (lookahead == '\n') ADVANCE(305); + if (lookahead == '\r') ADVANCE(305); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(301); + if (lookahead == '%') ADVANCE(305); + if (lookahead == '&') ADVANCE(305); + if (lookahead == '\'') ADVANCE(305); + if (lookahead == '(') ADVANCE(305); + if (lookahead == ')') ADVANCE(305); + if (lookahead == '*') ADVANCE(305); + if (lookahead == ',') ADVANCE(305); + if (lookahead == '.') ADVANCE(305); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(305); + if (lookahead == ';') ADVANCE(305); + if (lookahead == '=') ADVANCE(305); + if (lookahead == '?') ADVANCE(305); + if (lookahead == '@') ADVANCE(305); + if (lookahead == 'V') ADVANCE(305); + if (lookahead == '[') ADVANCE(305); + if (lookahead == '\\') ADVANCE(499); + if (lookahead == ']') ADVANCE(305); + if (lookahead == '^') ADVANCE(305); + if (lookahead == '_') ADVANCE(305); + if (lookahead == '`') ADVANCE(305); + if (lookahead == 'v') ADVANCE(305); + if (lookahead == '{') ADVANCE(305); + if (lookahead == '|') ADVANCE(305); + if (lookahead == '}') ADVANCE(305); + if (lookahead == '~') ADVANCE(307); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(305); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(345); + lookahead == 'a') ADVANCE(305); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(345); + lookahead == 'c') ADVANCE(305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(345); + lookahead == 'i') ADVANCE(305); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(345); + lookahead == 'l') ADVANCE(305); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(345); + lookahead == 'p') ADVANCE(305); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(345); + lookahead == 'w') ADVANCE(305); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'S' || lookahead == 'd' || lookahead == 'f' || - lookahead == 's') ADVANCE(345); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(345); + lookahead == 's') ADVANCE(305); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\f') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -2922,125 +2967,132 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(345); - if (lookahead != 0) ADVANCE(345); + lookahead == 12288) ADVANCE(305); + if (lookahead != 0) ADVANCE(305); END_STATE(); case 1: - 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(578); - if (lookahead == ',') ADVANCE(550); - 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(565); - if (lookahead == '_') ADVANCE(572); - if (lookahead == 'v') ADVANCE(557); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '~') ADVANCE(347); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(28); + if (lookahead == '\n') ADVANCE(510); + if (lookahead == '\r') ADVANCE(511); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(258); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(506); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '*') ADVANCE(522); + if (lookahead == ',') ADVANCE(495); + if (lookahead == '/') ADVANCE(523); + if (lookahead == ':') ADVANCE(297); + if (lookahead == ';') ADVANCE(521); + if (lookahead == '?') ADVANCE(524); + if (lookahead == '@') ADVANCE(491); + if (lookahead == 'N') ADVANCE(78); + if (lookahead == 'V') ADVANCE(502); + if (lookahead == '^') ADVANCE(509); + if (lookahead == '_') ADVANCE(516); + if (lookahead == 'v') ADVANCE(501); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '~') ADVANCE(307); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); if (lookahead == '<' || - lookahead == '>') ADVANCE(576); + lookahead == '>') ADVANCE(520); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(571); + lookahead == 'a') ADVANCE(515); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(564); + lookahead == 'c') ADVANCE(508); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(569); + lookahead == 'i') ADVANCE(513); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(568); + lookahead == 'p') ADVANCE(512); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(570); + lookahead == 'w') ADVANCE(514); if (lookahead == '[' || - lookahead == ']') ADVANCE(575); - if (('{' <= lookahead && lookahead <= '}')) ADVANCE(574); + lookahead == ']') ADVANCE(519); + if (('{' <= lookahead && lookahead <= '}')) ADVANCE(518); if (lookahead == '(' || - lookahead == ')') ADVANCE(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(582); + lookahead == ')') ADVANCE(517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(526); END_STATE(); case 2: - if (lookahead == ' ') ADVANCE(121); + if (lookahead == ' ') ADVANCE(104); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(129); + if (lookahead == ' ') ADVANCE(110); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(129); + if (lookahead == ' ') ADVANCE(110); if (lookahead == 's') ADVANCE(3); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(293); - if (lookahead == '?') ADVANCE(542); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '_') ADVANCE(294); - if (lookahead == '|') ADVANCE(268); + if (lookahead == '!') ADVANCE(252); + if (lookahead == '?') ADVANCE(487); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == '|') ADVANCE(229); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(293); + if (lookahead == '!') ADVANCE(252); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == '|') ADVANCE(229); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(252); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); - if (lookahead == 'C') ADVANCE(676); + lookahead == 'b') ADVANCE(232); + if (lookahead == 'C') ADVANCE(622); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); + lookahead == 'o') ADVANCE(233); if (lookahead == 'X' || - 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); + lookahead == 'x') ADVANCE(234); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == 'c') ADVANCE(623); + if (lookahead == '|') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(293); + case 8: + if (lookahead == '!') ADVANCE(252); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); + lookahead == 'b') ADVANCE(232); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); + lookahead == 'o') ADVANCE(233); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(273); - if (lookahead == '^') ADVANCE(534); - if (lookahead == '_') ADVANCE(294); - if (lookahead == '|') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'x') ADVANCE(234); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == '|') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); - case 8: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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); + case 9: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(412); + if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'f') ADVANCE(364); + if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'm') ADVANCE(312); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(453); + if (lookahead == 't') ADVANCE(359); + if (lookahead == 'u') ADVANCE(395); + if (lookahead == 'w') ADVANCE(357); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3049,44 +3101,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 9: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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); + case 10: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(285); + if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'm') ADVANCE(312); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(292); + if (lookahead == 't') ADVANCE(359); + if (lookahead == 'u') ADVANCE(395); + if (lookahead == 'w') ADVANCE(357); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 'l') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3095,36 +3148,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 10: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + case 11: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(412); + if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'f') ADVANCE(364); + if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'm') ADVANCE(312); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(453); + if (lookahead == 't') ADVANCE(359); + if (lookahead == 'u') ADVANCE(395); + if (lookahead == 'w') ADVANCE(357); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3133,30 +3189,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 11: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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); + case 12: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'c') ADVANCE(374); + if (lookahead == 'd') ADVANCE(285); + if (lookahead == 'e') ADVANCE(378); + if (lookahead == 'f') ADVANCE(282); + if (lookahead == 'i') ADVANCE(349); + if (lookahead == 'm') ADVANCE(312); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(292); + if (lookahead == 't') ADVANCE(359); + if (lookahead == 'u') ADVANCE(395); + if (lookahead == 'w') ADVANCE(357); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'L' || + lookahead == 'S' || + lookahead == 'l') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3165,42 +3235,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 12: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(551); - 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(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); + case 13: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'l') ADVANCE(280); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l' || - lookahead == 's') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 'f' || + lookahead == 's') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3209,37 +3273,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && - lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 13: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(551); - 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(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); + case 14: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'l') ADVANCE(318); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3248,37 +3305,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && - lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 14: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(551); - 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(432); - if (lookahead == 'n') ADVANCE(420); - if (lookahead == '|') ADVANCE(520); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + case 15: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(321); + if (lookahead == 'b') ADVANCE(334); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'd') ADVANCE(288); + if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'i') ADVANCE(400); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'o') ADVANCE(401); + if (lookahead == 't') ADVANCE(361); + if (lookahead == 'u') ADVANCE(427); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 's') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3287,29 +3349,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); - case 15: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(551); - 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(432); - if (lookahead == 'n') ADVANCE(420); - if (lookahead == '|') ADVANCE(520); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + case 16: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'a') ADVANCE(321); + if (lookahead == 'b') ADVANCE(334); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'd') ADVANCE(416); + if (lookahead == 'f') ADVANCE(433); + if (lookahead == 'i') ADVANCE(400); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'o') ADVANCE(401); + if (lookahead == 't') ADVANCE(361); + if (lookahead == 'u') ADVANCE(427); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3318,41 +3388,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(532); - END_STATE(); - case 16: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(297); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == '\\') ADVANCE(286); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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); + (lookahead < '{' || '}' < lookahead)) ADVANCE(477); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(296); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(256); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == '\\') ADVANCE(239); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == '{') ADVANCE(482); + if (lookahead == '|') ADVANCE(465); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(477); + END_STATE(); + case 18: + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(255); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); if (lookahead == ',') ADVANCE(39); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '{') ADVANCE(537); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '{') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3361,22 +3431,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(532); + lookahead != '}') ADVANCE(477); END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(339); + case 19: + if (lookahead == '"') ADVANCE(299); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(550); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '{') ADVANCE(537); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(495); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '{') ADVANCE(482); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3384,7 +3454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(335); + lookahead == 's') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3393,22 +3463,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(532); + lookahead != '}') ADVANCE(477); END_STATE(); - case 19: - if (lookahead == '"') ADVANCE(339); + case 20: + if (lookahead == '"') ADVANCE(299); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(550); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '{') ADVANCE(537); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(495); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '{') ADVANCE(482); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3417,58 +3487,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - 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); + lookahead != '}') ADVANCE(477); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(346); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(303); + if (lookahead == '\\') ADVANCE(246); + if (lookahead == '~') ADVANCE(307); + if (lookahead != 0) ADVANCE(305); END_STATE(); case 22: 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 == '#') ADVANCE(6); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(495); + if (lookahead == '/') ADVANCE(523); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '\\') ADVANCE(239); + if (lookahead == '^') ADVANCE(478); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'b') ADVANCE(67); + if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'f') ADVANCE(284); + if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'm') ADVANCE(44); + if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'r') ADVANCE(68); + if (lookahead == 's') ADVANCE(293); + if (lookahead == 't') ADVANCE(105); + if (lookahead == 'u') ADVANCE(148); + if (lookahead == 'w') ADVANCE(102); + if (lookahead == '{') ADVANCE(482); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + lookahead == 'l') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3477,34 +3543,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(541); - if (lookahead == '\\') ADVANCE(287); + if (lookahead == '"') ADVANCE(486); + if (lookahead == '\\') ADVANCE(245); if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '#') ADVANCE(552); - if (lookahead != 0) ADVANCE(268); + if (lookahead == '#') ADVANCE(497); + if (lookahead != 0) ADVANCE(229); END_STATE(); 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 == '#') ADVANCE(7); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(495); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == 'a') ADVANCE(124); + if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'd') ADVANCE(287); + if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'f') ADVANCE(283); + if (lookahead == 'i') ADVANCE(91); + if (lookahead == 'm') ADVANCE(44); + if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'r') ADVANCE(68); + if (lookahead == 's') ADVANCE(293); + if (lookahead == 't') ADVANCE(107); + if (lookahead == 'u') ADVANCE(147); + if (lookahead == 'w') ADVANCE(102); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'd' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 's') ADVANCE(320); + lookahead == 'l') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3513,32 +3590,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); END_STATE(); case 26: - if (lookahead == '#') ADVANCE(296); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); + if (lookahead == '#') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + END_STATE(); + case 27: + if (lookahead == '#') ADVANCE(255); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); 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 == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '{') ADVANCE(482); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || + lookahead == 'd' || + lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(320); + lookahead == 's') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3547,37 +3621,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); END_STATE(); - 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(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); + case 28: + if (lookahead == '#') ADVANCE(255); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(39); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '^') ADVANCE(478); + if (lookahead == 'a') ADVANCE(51); + if (lookahead == 'b') ADVANCE(67); + if (lookahead == 'c') ADVANCE(125); + if (lookahead == 'd') ADVANCE(289); + if (lookahead == 'f') ADVANCE(290); + if (lookahead == 'i') ADVANCE(154); + if (lookahead == 'o') ADVANCE(146); + if (lookahead == 't') ADVANCE(108); + if (lookahead == 'u') ADVANCE(182); + if (lookahead == '{') ADVANCE(482); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 'l' || + lookahead == 's') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3586,40 +3656,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); - END_STATE(); - case 28: - if (lookahead == '#') ADVANCE(276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 12288) ADVANCE(250); END_STATE(); case 29: - if (lookahead == '#') ADVANCE(298); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); + if (lookahead == '#') ADVANCE(257); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); 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); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '^') ADVANCE(478); + if (lookahead == 'a') ADVANCE(321); + if (lookahead == 'b') ADVANCE(334); + if (lookahead == 'd') ADVANCE(416); + if (lookahead == 'f') ADVANCE(433); + if (lookahead == 'i') ADVANCE(400); + if (lookahead == 'o') ADVANCE(401); + if (lookahead == 't') ADVANCE(361); + if (lookahead == 'u') ADVANCE(427); + if (lookahead == '{') ADVANCE(482); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(477); END_STATE(); case 30: - if (lookahead == '#') ADVANCE(7); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ',') ADVANCE(550); - 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 == '#') ADVANCE(8); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ',') ADVANCE(495); + if (lookahead == ':') ADVANCE(295); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == 'c') ADVANCE(125); + if (lookahead == 'i') ADVANCE(163); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(26); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3627,8 +3693,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3637,908 +3703,774 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); 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); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '/') ADVANCE(523); + if (lookahead == ':') ADVANCE(296); + if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(617); END_STATE(); case 32: - if (lookahead == '#') ADVANCE(267); - if (lookahead == '=') ADVANCE(616); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(532); + if (lookahead == '#') ADVANCE(228); + if (lookahead == '=') ADVANCE(562); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(477); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'c') ADVANCE(672); - if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(671); + if (lookahead == '#') ADVANCE(228); + if (lookahead == 'c') ADVANCE(618); + if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(617); END_STATE(); case 34: - 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); + if (lookahead == '#') ADVANCE(228); + if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'l') ADVANCE(424); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(477); END_STATE(); case 35: - if (lookahead == '#') ADVANCE(267); - if (lookahead == 'd') ADVANCE(92); - if (lookahead == 'l') ADVANCE(211); + if (lookahead == '#') ADVANCE(228); + if (lookahead == 'd') ADVANCE(76); + if (lookahead == 'l') ADVANCE(180); END_STATE(); case 36: - if (lookahead == '#') ADVANCE(556); + if (lookahead == '#') ADVANCE(500); if (lookahead != 0 && - lookahead != '\n') ADVANCE(554); + lookahead != '\n') ADVANCE(499); END_STATE(); case 37: - if (lookahead == '-') ADVANCE(143); + if (lookahead == '-') ADVANCE(121); END_STATE(); case 38: - if (lookahead == '-') ADVANCE(234); + if (lookahead == '-') ADVANCE(200); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(549); + if (lookahead == '@') ADVANCE(494); END_STATE(); case 40: - if (lookahead == 'A') ADVANCE(539); - if (lookahead == 'a') ADVANCE(540); + if (lookahead == 'A') ADVANCE(484); + if (lookahead == 'a') ADVANCE(485); if (lookahead == '#' || - lookahead == '=') ADVANCE(673); + lookahead == '=') ADVANCE(619); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + lookahead == 'r') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(59); + if (lookahead == 'a') ADVANCE(55); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(235); + if (lookahead == 'a') ADVANCE(201); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(260); - if (lookahead == 'i') ADVANCE(187); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(62); + if (lookahead == 'a') ADVANCE(221); + if (lookahead == 'i') ADVANCE(158); END_STATE(); case 45: - if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'a') ADVANCE(226); END_STATE(); case 46: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'e') ADVANCE(211); END_STATE(); case 47: - if (lookahead == 'a') ADVANCE(64); - if (lookahead == 'e') ADVANCE(246); + if (lookahead == 'a') ADVANCE(207); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(241); + if (lookahead == 'a') ADVANCE(131); END_STATE(); case 49: - if (lookahead == 'a') ADVANCE(63); + if (lookahead == 'a') ADVANCE(132); END_STATE(); case 50: - if (lookahead == 'a') ADVANCE(157); + if (lookahead == 'b') ADVANCE(171); END_STATE(); case 51: - if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'b') ADVANCE(181); + if (lookahead == 'c') ADVANCE(189); END_STATE(); case 52: - if (lookahead == 'b') ADVANCE(206); + if (lookahead == 'b') ADVANCE(181); + if (lookahead == 'c') ADVANCE(189); + if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'n') ADVANCE(59); + if (lookahead == 'p') ADVANCE(184); + if (lookahead == 's') ADVANCE(570); END_STATE(); case 53: - if (lookahead == 'b') ADVANCE(348); + if (lookahead == 'c') ADVANCE(564); END_STATE(); case 54: - if (lookahead == 'b') ADVANCE(212); - if (lookahead == 'c') ADVANCE(222); + if (lookahead == 'c') ADVANCE(610); END_STATE(); case 55: - 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); + if (lookahead == 'c') ADVANCE(100); END_STATE(); case 56: - if (lookahead == 'c') ADVANCE(142); + if (lookahead == 'c') ADVANCE(206); END_STATE(); case 57: - if (lookahead == 'c') ADVANCE(618); + if (lookahead == 'c') ADVANCE(179); + if (lookahead == 'e') ADVANCE(215); END_STATE(); case 58: - if (lookahead == 'c') ADVANCE(664); + if (lookahead == 'c') ADVANCE(195); END_STATE(); case 59: - if (lookahead == 'c') ADVANCE(117); + if (lookahead == 'd') ADVANCE(568); END_STATE(); case 60: - if (lookahead == 'c') ADVANCE(210); - if (lookahead == 'e') ADVANCE(252); + if (lookahead == 'd') ADVANCE(564); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(240); + if (lookahead == 'd') ADVANCE(612); END_STATE(); case 62: - if (lookahead == 'c') ADVANCE(79); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(78); + if (lookahead == 'e') ADVANCE(2); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(225); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 65: - if (lookahead == 'd') ADVANCE(364); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 66: - if (lookahead == 'd') ADVANCE(348); + if (lookahead == 'e') ADVANCE(4); END_STATE(); case 67: - if (lookahead == 'd') ADVANCE(622); + if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'y') ADVANCE(557); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(618); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 69: - if (lookahead == 'd') ADVANCE(666); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(255); - if (lookahead == 'u') ADVANCE(152); + if (lookahead == 'e') ADVANCE(595); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'e') ADVANCE(541); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(65); + if (lookahead == 'e') ADVANCE(564); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'e') ADVANCE(577); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(41); - if (lookahead == 't') ADVANCE(122); + if (lookahead == 'e') ADVANCE(525); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(2); + if (lookahead == 'e') ADVANCE(202); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(261); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(4); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(348); + if (lookahead == 'e') ADVANCE(220); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(365); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(133); - if (lookahead == 'y') ADVANCE(611); + if (lookahead == 'e') ADVANCE(47); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(116); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(649); + if (lookahead == 'e') ADVANCE(152); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(597); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(618); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(631); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(581); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(66); + if (lookahead == 'f') ADVANCE(538); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(237); + if (lookahead == 'f') ADVANCE(585); + if (lookahead == 'n') ADVANCE(530); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(72); + if (lookahead == 'f') ADVANCE(585); + if (lookahead == 'n') ADVANCE(111); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'f') ADVANCE(98); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'f') ADVANCE(191); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'f') ADVANCE(192); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'g') ADVANCE(534); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(219); + if (lookahead == 'g') ADVANCE(536); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'g') ADVANCE(563); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(89); + if (lookahead == 'g') ADVANCE(88); + if (lookahead == 'm') ADVANCE(46); + if (lookahead == 'u') ADVANCE(155); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(183); - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'h') ADVANCE(63); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'h') ADVANCE(2); END_STATE(); case 101: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'h') ADVANCE(37); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'h') ADVANCE(83); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'h') ADVANCE(572); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'h') ADVANCE(42); + if (lookahead == 'p') ADVANCE(188); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(259); + if (lookahead == 'h') ADVANCE(69); + if (lookahead == 'o') ADVANCE(545); END_STATE(); case 106: - if (lookahead == 'f') ADVANCE(594); + if (lookahead == 'h') ADVANCE(175); END_STATE(); case 107: - if (lookahead == 'f') ADVANCE(639); - if (lookahead == 'n') ADVANCE(586); + if (lookahead == 'h') ADVANCE(86); END_STATE(); case 108: - if (lookahead == 'f') ADVANCE(639); - if (lookahead == 'n') ADVANCE(130); + if (lookahead == 'h') ADVANCE(85); + if (lookahead == 'o') ADVANCE(545); END_STATE(); case 109: - if (lookahead == 'f') ADVANCE(116); + if (lookahead == 'i') ADVANCE(227); END_STATE(); case 110: - if (lookahead == 'f') ADVANCE(91); + if (lookahead == 'i') ADVANCE(145); + if (lookahead == 'o') ADVANCE(89); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(228); - if (lookahead == 't') ADVANCE(200); + if (lookahead == 'i') ADVANCE(210); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 112: - if (lookahead == 'f') ADVANCE(98); + if (lookahead == 'i') ADVANCE(143); END_STATE(); case 113: - if (lookahead == 'g') ADVANCE(590); + if (lookahead == 'i') ADVANCE(54); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(592); + if (lookahead == 'i') ADVANCE(149); + if (lookahead == 'l') ADVANCE(172); END_STATE(); case 115: - if (lookahead == 'g') ADVANCE(617); + if (lookahead == 'i') ADVANCE(127); END_STATE(); case 116: - if (lookahead == 'g') ADVANCE(104); - if (lookahead == 'm') ADVANCE(47); - if (lookahead == 'u') ADVANCE(186); + if (lookahead == 'i') ADVANCE(199); END_STATE(); case 117: - if (lookahead == 'h') ADVANCE(2); + if (lookahead == 'i') ADVANCE(159); END_STATE(); case 118: - if (lookahead == 'h') ADVANCE(37); + if (lookahead == 'i') ADVANCE(160); END_STATE(); case 119: - if (lookahead == 'h') ADVANCE(99); - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 'i') ADVANCE(164); END_STATE(); case 120: - if (lookahead == 'h') ADVANCE(626); + if (lookahead == 'i') ADVANCE(49); END_STATE(); case 121: - if (lookahead == 'h') ADVANCE(42); - if (lookahead == 'p') ADVANCE(223); + if (lookahead == 'k') ADVANCE(65); + if (lookahead == 'v') ADVANCE(43); END_STATE(); case 122: - if (lookahead == 'h') ADVANCE(75); + if (lookahead == 'l') ADVANCE(4); END_STATE(); case 123: - if (lookahead == 'h') ADVANCE(207); + if (lookahead == 'l') ADVANCE(213); END_STATE(); case 124: - if (lookahead == 'h') ADVANCE(82); - if (lookahead == 'o') ADVANCE(601); + if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'n') ADVANCE(59); + if (lookahead == 'p') ADVANCE(184); + if (lookahead == 's') ADVANCE(570); END_STATE(); case 125: - if (lookahead == 'h') ADVANCE(102); + if (lookahead == 'l') ADVANCE(527); END_STATE(); case 126: - if (lookahead == 'h') ADVANCE(101); - if (lookahead == 'o') ADVANCE(601); + if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'o') ADVANCE(129); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(172); + if (lookahead == 'l') ADVANCE(579); END_STATE(); case 128: - if (lookahead == 'i') ADVANCE(266); + if (lookahead == 'l') ADVANCE(224); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(174); - if (lookahead == 'o') ADVANCE(106); + if (lookahead == 'l') ADVANCE(133); + if (lookahead == 'u') ADVANCE(161); END_STATE(); case 130: - if (lookahead == 'i') ADVANCE(244); - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'l') ADVANCE(225); END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(170); + if (lookahead == 'l') ADVANCE(128); END_STATE(); case 132: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'l') ADVANCE(130); END_STATE(); case 133: - if (lookahead == 'i') ADVANCE(179); - if (lookahead == 'l') ADVANCE(203); + if (lookahead == 'l') ADVANCE(77); END_STATE(); case 134: - if (lookahead == 'i') ADVANCE(150); + if (lookahead == 'l') ADVANCE(73); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(233); + if (lookahead == 'l') ADVANCE(87); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'l') ADVANCE(205); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'l') ADVANCE(119); END_STATE(); case 138: - if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'm') ADVANCE(50); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(195); + if (lookahead == 'm') ADVANCE(565); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'm') ADVANCE(543); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'm') ADVANCE(549); END_STATE(); case 142: - if (lookahead == 'k') ADVANCE(229); + if (lookahead == 'm') ADVANCE(553); END_STATE(); case 143: - if (lookahead == 'k') ADVANCE(76); - if (lookahead == 'v') ADVANCE(46); + if (lookahead == 'm') ADVANCE(109); END_STATE(); case 144: - if (lookahead == 'l') ADVANCE(366); + if (lookahead == 'n') ADVANCE(208); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(4); + if (lookahead == 'n') ADVANCE(538); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(250); + if (lookahead == 'n') ADVANCE(555); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(367); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(583); + if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'p') ADVANCE(93); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(583); - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 150: - if (lookahead == 'l') ADVANCE(633); + if (lookahead == 'n') ADVANCE(559); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(256); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 'p') ADVANCE(215); - if (lookahead == 's') ADVANCE(624); + if (lookahead == 'n') ADVANCE(559); + if (lookahead == 'r') ADVANCE(82); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(144); + if (lookahead == 'n') ADVANCE(583); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(263); + if (lookahead == 'n') ADVANCE(600); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(264); + if (lookahead == 'n') ADVANCE(529); END_STATE(); case 155: - if (lookahead == 'l') ADVANCE(147); + if (lookahead == 'n') ADVANCE(606); END_STATE(); case 156: - if (lookahead == 'l') ADVANCE(160); - if (lookahead == 'u') ADVANCE(194); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 157: - if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'n') ADVANCE(60); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'n') ADVANCE(112); END_STATE(); case 159: - if (lookahead == 'l') ADVANCE(103); - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'n') ADVANCE(96); END_STATE(); case 160: - if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 161: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 162: - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'n') ADVANCE(48); END_STATE(); case 163: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'n') ADVANCE(212); END_STATE(); case 164: - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 165: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 166: - if (lookahead == 'm') ADVANCE(52); + if (lookahead == 'n') ADVANCE(94); END_STATE(); case 167: - if (lookahead == 'm') ADVANCE(619); + if (lookahead == 'o') ADVANCE(547); END_STATE(); case 168: - if (lookahead == 'm') ADVANCE(599); + if (lookahead == 'o') ADVANCE(551); END_STATE(); case 169: - if (lookahead == 'm') ADVANCE(607); + if (lookahead == 'o') ADVANCE(597); END_STATE(); case 170: - if (lookahead == 'm') ADVANCE(128); + if (lookahead == 'o') ADVANCE(608); END_STATE(); case 171: - if (lookahead == 'm') ADVANCE(112); + if (lookahead == 'o') ADVANCE(122); END_STATE(); case 172: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'o') ADVANCE(217); END_STATE(); case 173: - if (lookahead == 'n') ADVANCE(242); + if (lookahead == 'o') ADVANCE(183); END_STATE(); case 174: - if (lookahead == 'n') ADVANCE(594); + if (lookahead == 'o') ADVANCE(140); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(348); + if (lookahead == 'o') ADVANCE(61); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(609); + if (lookahead == 'o') ADVANCE(203); END_STATE(); case 177: - if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'o') ADVANCE(141); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(159); - if (lookahead == 'p') ADVANCE(247); - if (lookahead == 's') ADVANCE(136); + if (lookahead == 'o') ADVANCE(142); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(113); + if (lookahead == 'o') ADVANCE(156); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(111); + if (lookahead == 'o') ADVANCE(173); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(613); + if (lookahead == 'o') ADVANCE(216); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(613); - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'p') ADVANCE(93); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(637); + if (lookahead == 'p') ADVANCE(604); END_STATE(); case 184: - if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'p') ADVANCE(84); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(585); + if (lookahead == 'p') ADVANCE(80); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(660); + if (lookahead == 'r') ADVANCE(566); END_STATE(); case 187: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'r') ADVANCE(593); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'r') ADVANCE(75); END_STATE(); case 189: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'r') ADVANCE(176); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'r') ADVANCE(113); END_STATE(); case 191: - if (lookahead == 'n') ADVANCE(68); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 192: - if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'r') ADVANCE(153); END_STATE(); case 194: - if (lookahead == 'n') ADVANCE(240); + if (lookahead == 'r') ADVANCE(82); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'r') ADVANCE(170); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(87); + if (lookahead == 's') ADVANCE(532); END_STATE(); case 197: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 's') ADVANCE(589); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(248); + if (lookahead == 's') ADVANCE(587); END_STATE(); case 199: - if (lookahead == 'o') ADVANCE(603); + if (lookahead == 's') ADVANCE(591); END_STATE(); case 200: - if (lookahead == 'o') ADVANCE(605); + if (lookahead == 's') ADVANCE(223); END_STATE(); case 201: - if (lookahead == 'o') ADVANCE(651); + if (lookahead == 's') ADVANCE(101); END_STATE(); case 202: - if (lookahead == 'o') ADVANCE(662); + if (lookahead == 's') ADVANCE(64); END_STATE(); case 203: - if (lookahead == 'o') ADVANCE(254); + if (lookahead == 's') ADVANCE(196); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(213); + if (lookahead == 's') ADVANCE(198); END_STATE(); case 205: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 's') ADVANCE(70); END_STATE(); case 206: - if (lookahead == 'o') ADVANCE(145); + if (lookahead == 't') ADVANCE(564); END_STATE(); case 207: - if (lookahead == 'o') ADVANCE(69); + if (lookahead == 't') ADVANCE(581); END_STATE(); case 208: - if (lookahead == 'o') ADVANCE(236); + if (lookahead == 't') ADVANCE(38); END_STATE(); case 209: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(192); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 211: - if (lookahead == 'o') ADVANCE(204); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 212: - if (lookahead == 'o') ADVANCE(253); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 213: - if (lookahead == 'p') ADVANCE(658); + if (lookahead == 'u') ADVANCE(66); END_STATE(); case 214: - if (lookahead == 'p') ADVANCE(247); - if (lookahead == 's') ADVANCE(136); + if (lookahead == 'u') ADVANCE(193); END_STATE(); case 215: - if (lookahead == 'p') ADVANCE(100); + if (lookahead == 'v') ADVANCE(79); END_STATE(); case 216: - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 't') ADVANCE(251); + if (lookahead == 'v') ADVANCE(71); END_STATE(); case 217: - if (lookahead == 'p') ADVANCE(49); + if (lookahead == 'w') ADVANCE(539); END_STATE(); case 218: - if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'w') ADVANCE(45); END_STATE(); case 219: - if (lookahead == 'r') ADVANCE(647); + if (lookahead == 'w') ADVANCE(166); END_STATE(); case 220: - if (lookahead == 'r') ADVANCE(171); + if (lookahead == 'w') ADVANCE(137); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(175); + if (lookahead == 'x') ADVANCE(112); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'y') ADVANCE(4); END_STATE(); case 223: - if (lookahead == 'r') ADVANCE(90); + if (lookahead == 'y') ADVANCE(138); END_STATE(); case 224: - if (lookahead == 'r') ADVANCE(132); + if (lookahead == 'y') ADVANCE(598); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(202); + if (lookahead == 'y') ADVANCE(602); END_STATE(); case 226: - if (lookahead == 'r') ADVANCE(184); + if (lookahead == 'y') ADVANCE(197); END_STATE(); case 227: - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'z') ADVANCE(72); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(209); + if (lookahead == '|') ADVANCE(229); END_STATE(); case 229: - if (lookahead == 's') ADVANCE(217); + if (lookahead == '|') ADVANCE(24); + if (lookahead != 0) ADVANCE(229); END_STATE(); case 230: - if (lookahead == 's') ADVANCE(588); + if (lookahead == '|') ADVANCE(498); + if (lookahead != 0) ADVANCE(230); END_STATE(); case 231: - if (lookahead == 's') ADVANCE(643); - END_STATE(); - case 232: - if (lookahead == 's') ADVANCE(641); - END_STATE(); - case 233: - if (lookahead == 's') ADVANCE(645); - END_STATE(); - case 234: - if (lookahead == 's') ADVANCE(262); - END_STATE(); - case 235: - if (lookahead == 's') ADVANCE(118); - END_STATE(); - case 236: - if (lookahead == 's') ADVANCE(230); - END_STATE(); - case 237: - if (lookahead == 's') ADVANCE(88); - END_STATE(); - case 238: - if (lookahead == 's') ADVANCE(232); - END_STATE(); - case 239: - if (lookahead == 's') ADVANCE(83); - END_STATE(); - case 240: - if (lookahead == 't') ADVANCE(618); - END_STATE(); - case 241: - if (lookahead == 't') ADVANCE(635); - END_STATE(); - case 242: - if (lookahead == 't') ADVANCE(38); - END_STATE(); - case 243: - if (lookahead == 't') ADVANCE(249); - END_STATE(); - case 244: - if (lookahead == 't') ADVANCE(141); - END_STATE(); - case 245: - if (lookahead == 't') ADVANCE(120); - END_STATE(); - case 246: - if (lookahead == 't') ADVANCE(123); - END_STATE(); - case 247: - if (lookahead == 't') ADVANCE(199); - END_STATE(); - case 248: - if (lookahead == 't') ADVANCE(201); - END_STATE(); - case 249: - if (lookahead == 'u') ADVANCE(221); - END_STATE(); - case 250: - if (lookahead == 'u') ADVANCE(77); - END_STATE(); - case 251: - if (lookahead == 'u') ADVANCE(226); - END_STATE(); - case 252: - if (lookahead == 'v') ADVANCE(96); - END_STATE(); - case 253: - if (lookahead == 'v') ADVANCE(84); - END_STATE(); - case 254: - if (lookahead == 'w') ADVANCE(595); - END_STATE(); - case 255: - if (lookahead == 'w') ADVANCE(163); - END_STATE(); - case 256: - if (lookahead == 'w') ADVANCE(45); - END_STATE(); - case 257: - if (lookahead == 'w') ADVANCE(180); - END_STATE(); - case 258: - if (lookahead == 'w') ADVANCE(164); - END_STATE(); - case 259: - if (lookahead == 'w') ADVANCE(165); - END_STATE(); - case 260: - if (lookahead == 'x') ADVANCE(131); - END_STATE(); - case 261: - if (lookahead == 'y') ADVANCE(4); - END_STATE(); - case 262: - if (lookahead == 'y') ADVANCE(166); - END_STATE(); - case 263: - if (lookahead == 'y') ADVANCE(652); - END_STATE(); - case 264: - if (lookahead == 'y') ADVANCE(656); - END_STATE(); - case 265: - if (lookahead == 'y') ADVANCE(231); - END_STATE(); - case 266: - if (lookahead == 'z') ADVANCE(85); - END_STATE(); - case 267: - if (lookahead == '|') ADVANCE(268); - END_STATE(); - case 268: - if (lookahead == '|') ADVANCE(24); - if (lookahead != 0) ADVANCE(268); - END_STATE(); - case 269: - if (lookahead == '|') ADVANCE(553); - if (lookahead != 0) ADVANCE(269); - END_STATE(); - case 270: if (lookahead == '#' || - lookahead == '=') ADVANCE(673); + lookahead == '=') ADVANCE(619); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); + lookahead == 'r') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); - case 271: + case 232: if (lookahead == '+' || - lookahead == '-') ADVANCE(278); + lookahead == '-') ADVANCE(240); if (lookahead == '0' || - lookahead == '1') ADVANCE(307); + lookahead == '1') ADVANCE(266); END_STATE(); - case 272: + case 233: if (lookahead == '+' || - lookahead == '-') ADVANCE(279); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); + lookahead == '-') ADVANCE(241); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); END_STATE(); - case 273: + case 234: if (lookahead == '+' || - lookahead == '-') ADVANCE(281); + lookahead == '-') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); END_STATE(); - case 274: + case 235: if (lookahead == '+' || - lookahead == '-') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); + lookahead == '-') ADVANCE(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 275: + case 236: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + lookahead == 'a') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); END_STATE(); - case 276: + case 237: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); + lookahead == 'b') ADVANCE(232); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); + lookahead == 'o') ADVANCE(233); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(273); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'x') ADVANCE(234); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); - case 277: + case 238: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); - END_STATE(); - case 278: - if (lookahead == '0' || - lookahead == '1') ADVANCE(307); + lookahead == 'r') ADVANCE(244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); - case 279: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); - END_STATE(); - case 280: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); + case 239: + if (lookahead == '(' || + lookahead == ')') ADVANCE(308); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\f' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(309); END_STATE(); - case 281: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + case 240: + if (lookahead == '0' || + lookahead == '1') ADVANCE(266); END_STATE(); - case 282: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); + case 241: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); END_STATE(); - case 283: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); + case 242: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 284: + case 243: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); END_STATE(); - case 285: + case 244: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - 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(354); - END_STATE(); - case 287: + case 245: if (lookahead != 0 && lookahead != '\n') ADVANCE(23); END_STATE(); - case 288: - if (eof) ADVANCE(290); - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - 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); + case 246: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(306); + END_STATE(); + case 247: + if (eof) ADVANCE(249); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == '{') ADVANCE(482); + if (lookahead == '|') ADVANCE(465); + if (lookahead == '}') ADVANCE(483); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4547,28 +4479,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead)) ADVANCE(532); + (lookahead < '[' || ']' < lookahead)) ADVANCE(477); END_STATE(); - case 289: - if (eof) ADVANCE(290); - if (lookahead == '"') ADVANCE(339); - if (lookahead == '#') ADVANCE(295); - if (lookahead == '\'') ADVANCE(547); - if (lookahead == '(') ADVANCE(535); - if (lookahead == ')') ADVANCE(536); - if (lookahead == ',') ADVANCE(551); - if (lookahead == '.') ADVANCE(302); - if (lookahead == ':') ADVANCE(336); - if (lookahead == ';') ADVANCE(293); - if (lookahead == '^') ADVANCE(533); - if (lookahead == '`') ADVANCE(548); - if (lookahead == 'c') ADVANCE(432); - if (lookahead == 'n') ADVANCE(420); - if (lookahead == '|') ADVANCE(520); - if (lookahead == '}') ADVANCE(538); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + case 248: + if (eof) ADVANCE(249); + if (lookahead == '"') ADVANCE(299); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\'') ADVANCE(492); + if (lookahead == '(') ADVANCE(480); + if (lookahead == ')') ADVANCE(481); + if (lookahead == ',') ADVANCE(496); + if (lookahead == '.') ADVANCE(261); + if (lookahead == ':') ADVANCE(296); + if (lookahead == ';') ADVANCE(252); + if (lookahead == '^') ADVANCE(478); + if (lookahead == '`') ADVANCE(493); + if (lookahead == 'c') ADVANCE(375); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == '|') ADVANCE(465); + if (lookahead == '}') ADVANCE(483); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(311); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -4576,8 +4508,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 's') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4586,15 +4518,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); if (lookahead != 0 && (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(532); + lookahead != '{') ADVANCE(477); END_STATE(); - case 290: + case 249: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 291: + case 250: ACCEPT_TOKEN(sym__ws); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || @@ -4604,1828 +4536,1781 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(291); + lookahead == 12288) ADVANCE(250); END_STATE(); - case 292: + case 251: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 293: + case 252: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(292); - if (lookahead != 0) ADVANCE(293); + if (lookahead == '\n') ADVANCE(251); + if (lookahead != 0) ADVANCE(252); END_STATE(); - case 294: + case 253: ACCEPT_TOKEN(anon_sym_POUND_); END_STATE(); - case 295: + case 254: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(293); - if (lookahead == '\'') ADVANCE(545); - if (lookahead == '+') ADVANCE(674); - if (lookahead == '-') ADVANCE(675); + if (lookahead == '!') ADVANCE(252); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == '+') ADVANCE(620); + if (lookahead == '-') ADVANCE(621); if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(543); + if (lookahead == '?') ADVANCE(488); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); - if (lookahead == 'C') ADVANCE(676); + lookahead == 'b') ADVANCE(232); + if (lookahead == 'C') ADVANCE(622); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); - if (lookahead == 'P') ADVANCE(669); + lookahead == 'o') ADVANCE(233); + if (lookahead == 'P') ADVANCE(615); if (lookahead == 'X' || - 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); + lookahead == 'x') ADVANCE(234); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == 'c') ADVANCE(623); + if (lookahead == 'p') ADVANCE(616); + if (lookahead == '|') ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); - case 296: + case 255: ACCEPT_TOKEN(anon_sym_POUND); - 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); + if (lookahead == '!') ADVANCE(252); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == '+') ADVANCE(620); + if (lookahead == '-') ADVANCE(621); + if (lookahead == '?') ADVANCE(488); + if (lookahead == 'C') ADVANCE(622); + if (lookahead == '^') ADVANCE(479); + if (lookahead == '_') ADVANCE(253); + if (lookahead == 'c') ADVANCE(623); + if (lookahead == '|') ADVANCE(229); END_STATE(); - case 297: + case 256: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(545); - if (lookahead == '+') ADVANCE(674); - if (lookahead == '-') ADVANCE(675); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == '+') ADVANCE(620); + if (lookahead == '-') ADVANCE(621); if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(543); + if (lookahead == '?') ADVANCE(488); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); - if (lookahead == 'C') ADVANCE(676); + lookahead == 'b') ADVANCE(232); + if (lookahead == 'C') ADVANCE(622); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); - if (lookahead == 'P') ADVANCE(669); + lookahead == 'o') ADVANCE(233); + if (lookahead == 'P') ADVANCE(615); if (lookahead == 'X' || - 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); + lookahead == 'x') ADVANCE(234); + if (lookahead == '^') ADVANCE(479); + if (lookahead == 'c') ADVANCE(623); + if (lookahead == 'p') ADVANCE(616); + if (lookahead == '|') ADVANCE(229); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(231); END_STATE(); - case 298: + case 257: ACCEPT_TOKEN(anon_sym_POUND); - 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); + if (lookahead == '\'') ADVANCE(490); + if (lookahead == '+') ADVANCE(620); + if (lookahead == '-') ADVANCE(621); + if (lookahead == '?') ADVANCE(488); + if (lookahead == 'C') ADVANCE(622); + if (lookahead == '^') ADVANCE(479); + if (lookahead == 'c') ADVANCE(623); + if (lookahead == '|') ADVANCE(229); END_STATE(); - case 299: + case 258: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(271); + lookahead == 'b') ADVANCE(232); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(272); + lookahead == 'o') ADVANCE(233); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(273); - if (lookahead == '|') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'x') ADVANCE(234); + if (lookahead == '|') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); END_STATE(); - case 300: + case 259: ACCEPT_TOKEN(aux_sym__form_token1); END_STATE(); - case 301: + case 260: ACCEPT_TOKEN(aux_sym__form_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 302: + case 261: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 303: + case 262: ACCEPT_TOKEN(aux_sym_num_lit_token1); END_STATE(); - case 304: + case 263: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '/') ADVANCE(528); - if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(532); + if (lookahead == '.') ADVANCE(274); + if (lookahead == '/') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(477); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(301); + lookahead == 'a') ADVANCE(260); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(319); + lookahead == 'N') ADVANCE(278); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); + lookahead == 's') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); - case 305: + case 264: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(315); - if (lookahead == '/') ADVANCE(528); - if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(532); + if (lookahead == '.') ADVANCE(274); + if (lookahead == '/') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(477); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(319); + lookahead == 'N') ADVANCE(278); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); + lookahead == 's') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); END_STATE(); - case 306: + case 265: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(309); - if (lookahead == '/') ADVANCE(280); + if (lookahead == '.') ADVANCE(268); + if (lookahead == '/') ADVANCE(242); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(303); + lookahead == 'N') ADVANCE(262); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + lookahead == 's') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); - case 307: + case 266: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (lookahead == '0' || - lookahead == '1') ADVANCE(307); + lookahead == '1') ADVANCE(266); END_STATE(); - case 308: + case 267: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(267); END_STATE(); - case 309: + case 268: 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(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(309); + lookahead == 's') ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); END_STATE(); - case 310: + case 269: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 311: + case 270: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); END_STATE(); - case 312: + case 271: ACCEPT_TOKEN(aux_sym_num_lit_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); END_STATE(); - case 313: + case 272: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); END_STATE(); - case 314: + case 273: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); END_STATE(); - case 315: + case 274: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(477); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); + lookahead == 's') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 316: + case 275: 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); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 317: + case 276: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); END_STATE(); - case 318: + case 277: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(477); if (lookahead == '0' || - lookahead == '1') ADVANCE(318); + lookahead == '1') ADVANCE(277); END_STATE(); - case 319: + case 278: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 320: + case 279: ACCEPT_TOKEN(aux_sym_num_lit_token2); END_STATE(); - case 321: + case 280: 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); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'o') ADVANCE(417); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 322: + case 281: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'e') ADVANCE(408); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'e') ADVANCE(350); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 323: + case 282: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(462); - if (lookahead == 'o') ADVANCE(486); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'o') ADVANCE(431); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 324: + case 283: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(193); - if (lookahead == 'o') ADVANCE(218); + if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'o') ADVANCE(186); END_STATE(); - case 325: + case 284: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(193); - if (lookahead == 'o') ADVANCE(218); - if (lookahead == 'r') ADVANCE(205); + if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'o') ADVANCE(186); + if (lookahead == 'r') ADVANCE(174); END_STATE(); - case 326: + case 285: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(630); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(576); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 327: + case 286: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(629); + if (lookahead == 'o') ADVANCE(575); END_STATE(); - case 328: + case 287: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(628); + if (lookahead == 'o') ADVANCE(574); END_STATE(); - case 329: + case 288: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(514); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(459); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 330: + case 289: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(257); + if (lookahead == 'o') ADVANCE(219); END_STATE(); - case 331: + case 290: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(205); + if (lookahead == 'r') ADVANCE(174); END_STATE(); - case 332: + case 291: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(475); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(419); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 333: + case 292: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(448); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'u') ADVANCE(392); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 334: + case 293: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(167); + if (lookahead == 'u') ADVANCE(139); END_STATE(); - case 335: + case 294: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 336: + case 295: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(338); END_STATE(); - case 337: + case 296: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '@') ADVANCE(560); + if (lookahead == ':') ADVANCE(298); END_STATE(); - case 338: + case 297: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '@') ADVANCE(504); + END_STATE(); + case 298: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 339: + case 299: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 340: + case 300: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '#') ADVANCE(345); + if (lookahead == '#') ADVANCE(305); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(344); + lookahead != '~') ADVANCE(304); END_STATE(); - case 341: + case 301: ACCEPT_TOKEN(aux_sym_str_lit_token1); - 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 == '?') ADVANCE(302); + if (lookahead == 'C') ADVANCE(305); + if (lookahead == 'P') ADVANCE(305); + if (lookahead == '^') ADVANCE(305); + if (lookahead == '_') ADVANCE(305); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'p') ADVANCE(305); + if (lookahead == '|') ADVANCE(304); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(345); + lookahead != '~') ADVANCE(305); END_STATE(); - case 342: + case 302: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '@') ADVANCE(345); + if (lookahead == '@') ADVANCE(305); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(345); + lookahead != '~') ADVANCE(305); END_STATE(); - case 343: + case 303: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(344); + if (lookahead == '|') ADVANCE(304); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(345); + lookahead != '~') ADVANCE(305); END_STATE(); - case 344: + case 304: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(340); + if (lookahead == '|') ADVANCE(300); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(344); + lookahead != '~') ADVANCE(304); END_STATE(); - case 345: + case 305: ACCEPT_TOKEN(aux_sym_str_lit_token1); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(345); + lookahead != '~') ADVANCE(305); END_STATE(); - case 346: + case 306: ACCEPT_TOKEN(aux_sym_str_lit_token2); END_STATE(); - case 347: + case 307: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 348: + case 308: ACCEPT_TOKEN(aux_sym_char_lit_token1); END_STATE(); - case 349: + case 309: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(56); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\f' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')') ADVANCE(309); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_nil_lit); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 311: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == '#') ADVANCE(466); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + END_STATE(); + case 312: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(460); + if (lookahead == 'i') ADVANCE(407); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 313: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(463); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 314: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(614); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 315: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 316: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(326); + if (lookahead == 'e') ADVANCE(450); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 317: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(384); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 318: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'o') ADVANCE(417); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 319: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'a') ADVANCE(386); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 320: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'b') ADVANCE(329); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 321: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'b') ADVANCE(425); + if (lookahead == 'c') ADVANCE(434); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 322: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'c') ADVANCE(611); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 323: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'e') ADVANCE(456); + if (lookahead == 'i') ADVANCE(376); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 324: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'c') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 325: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'c') ADVANCE(452); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 326: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'c') ADVANCE(440); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 327: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'd') ADVANCE(569); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 328: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'd') ADVANCE(613); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 329: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'd') ADVANCE(314); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 330: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'd') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 331: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(430); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 332: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(596); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 333: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(578); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 334: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(370); + if (lookahead == 'y') ADVANCE(558); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 335: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(542); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 336: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(350); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 337: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(446); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 338: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(436); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 339: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(325); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 340: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(432); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 341: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(315); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 342: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 343: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(397); + if (lookahead == 'i') ADVANCE(387); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 344: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(367); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 345: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(404); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 346: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(435); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 347: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(402); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 348: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'e') ADVANCE(411); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 349: + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'f') ADVANCE(586); + if (lookahead == 'n') ADVANCE(365); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 350: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(53); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'f') ADVANCE(356); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 351: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(255); - if (lookahead == 'u') ADVANCE(152); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'f') ADVANCE(438); + if (lookahead == 't') ADVANCE(413); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 352: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(243); - if (lookahead == 'u') ADVANCE(155); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'f') ADVANCE(439); + if (lookahead == 't') ADVANCE(414); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 353: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(258); - if (lookahead == 'u') ADVANCE(152); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'g') ADVANCE(477); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 354: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'i') ADVANCE(172); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'g') ADVANCE(535); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 355: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'o') ADVANCE(220); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'g') ADVANCE(537); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 356: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(44); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'g') ADVANCE(348); + if (lookahead == 'm') ADVANCE(316); + if (lookahead == 'u') ADVANCE(403); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 357: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(49); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'h') ADVANCE(343); + if (lookahead == 'i') ADVANCE(449); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 358: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'u') ADVANCE(155); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'h') ADVANCE(573); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 359: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'h') ADVANCE(338); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 360: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'h') ADVANCE(420); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 361: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'h') ADVANCE(347); + if (lookahead == 'o') ADVANCE(546); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 362: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(464); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 363: - ACCEPT_TOKEN(aux_sym_char_lit_token2); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(376); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 364: - ACCEPT_TOKEN(aux_sym_char_lit_token3); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'o') ADVANCE(431); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 365: - ACCEPT_TOKEN(aux_sym_char_lit_token4); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(451); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 366: - ACCEPT_TOKEN(aux_sym_char_lit_token5); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(322); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 367: - ACCEPT_TOKEN(aux_sym_char_lit_token6); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(443); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 368: - ACCEPT_TOKEN(sym_nil_lit); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'i') ADVANCE(379); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); 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); + if (lookahead == 'i') ADVANCE(399); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(515); - if (lookahead == 'i') ADVANCE(464); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'i') ADVANCE(406); + if (lookahead == 'l') ADVANCE(418); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(518); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'i') ADVANCE(408); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(668); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'i') ADVANCE(394); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(502); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'i') ADVANCE(319); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(384); - if (lookahead == 'e') ADVANCE(504); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'o') ADVANCE(382); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(441); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(528); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(447); - if (lookahead == 'o') ADVANCE(473); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(310); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(443); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(457); + if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'p') ADVANCE(429); + if (lookahead == 's') ADVANCE(571); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(387); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(445); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(480); - if (lookahead == 'c') ADVANCE(489); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(580); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(665); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(461); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - 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); + if (lookahead == 'l') ADVANCE(462); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(385); + if (lookahead == 'u') ADVANCE(410); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(506); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(337); + if (lookahead == 't') ADVANCE(368); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(494); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(380); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(623); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(339); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(667); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(381); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(372); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'l') ADVANCE(333); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(544); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(485); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(550); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(650); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(554); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(632); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(320); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(427); - if (lookahead == 'y') ADVANCE(612); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(393); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(598); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(408); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'm') ADVANCE(362); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(500); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(383); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(491); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(324); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(383); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(584); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(487); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(601); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(373); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(353); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(531); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(453); - if (lookahead == 'i') ADVANCE(444); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(556); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(424); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(560); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(461); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(607); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(490); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(330); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(467); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(354); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(640); - if (lookahead == 'n') ADVANCE(422); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(372); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(413); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(355); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(493); - if (lookahead == 't') ADVANCE(470); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(352); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(532); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(452); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(591); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'n') ADVANCE(346); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(593); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(576); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - 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); + if (lookahead == 'o') ADVANCE(548); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(401); - if (lookahead == 'i') ADVANCE(503); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(552); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(627); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(609); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(396); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(459); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(476); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(428); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(405); - if (lookahead == 'o') ADVANCE(602); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(458); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(519); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(388); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(433); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(328); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(462); - if (lookahead == 'o') ADVANCE(486); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(389); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(505); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(396); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(380); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(390); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(497); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(417); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(436); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(455); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(455); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'o') ADVANCE(447); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(463); - if (lookahead == 'l') ADVANCE(474); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'p') ADVANCE(351); + if (lookahead == 's') ADVANCE(371); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(465); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'p') ADVANCE(605); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(450); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'p') ADVANCE(345); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(377); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'p') ADVANCE(341); + if (lookahead == 't') ADVANCE(454); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(584); - if (lookahead == 'o') ADVANCE(439); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(567); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(584); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(594); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(368); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(419); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - 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); + if (lookahead == 'r') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(499); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(366); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(634); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(344); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(516); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(398); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); 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(532); + if (lookahead == 'r') ADVANCE(421); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(442); - if (lookahead == 'u') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(423); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(395); - if (lookahead == 't') ADVANCE(425); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'r') ADVANCE(415); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(437); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(590); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(397); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(588); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(438); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(592); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(391); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(533); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(600); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(332); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(608); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(442); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(378); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 's') ADVANCE(444); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(449); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 't') ADVANCE(582); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 't') ADVANCE(358); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 't') ADVANCE(360); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(440); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 't') ADVANCE(373); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(382); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 't') ADVANCE(369); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(638); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'u') ADVANCE(392); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(655); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'u') ADVANCE(437); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(410); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'v') ADVANCE(335); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(587); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'v') ADVANCE(340); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(610); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'w') ADVANCE(313); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(409); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'w') ADVANCE(540); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(614); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'w') ADVANCE(409); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(661); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'x') ADVANCE(372); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(388); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'y') ADVANCE(599); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(375); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'y') ADVANCE(603); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(411); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'y') ADVANCE(441); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(429); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == 'z') ADVANCE(342); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(412); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (lookahead == '|') ADVANCE(477); + if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(465); + if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(230); END_STATE(); case 466: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - 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(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 == '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(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(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(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(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(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(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(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(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(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(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(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(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(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 == '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(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(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(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 == '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(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(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(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(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(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(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(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(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 == '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(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(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(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(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(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(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 == '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(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(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(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(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(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 == '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(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 == '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(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 == '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(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(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 == '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 == '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(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(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 == '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 == '|') 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 == 'B' || - lookahead == 'b') ADVANCE(530); + lookahead == 'b') ADVANCE(475); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(527); + lookahead == 'o') ADVANCE(472); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(523); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); + lookahead == 'x') ADVANCE(468); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(471); END_STATE(); - case 522: + case 467: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(272); END_STATE(); - case 523: + case 468: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(524); + lookahead == '-') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); END_STATE(); - case 524: + case 469: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); END_STATE(); - case 525: + case 470: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(528); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + lookahead == '-') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 526: + case 471: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(477); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); + lookahead == 'r') ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(471); END_STATE(); - case 527: + case 472: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(529); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); + lookahead == '-') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); END_STATE(); - case 528: + case 473: 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); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 529: + case 474: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(477); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(276); END_STATE(); - case 530: + case 475: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(531); + lookahead == '-') ADVANCE(476); if (lookahead == '0' || - lookahead == '1') ADVANCE(318); + lookahead == '1') ADVANCE(277); END_STATE(); - case 531: + case 476: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(477); if (lookahead == '0' || - lookahead == '1') ADVANCE(318); + lookahead == '1') ADVANCE(277); END_STATE(); - case 532: + case 477: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 533: + case 478: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 534: + case 479: ACCEPT_TOKEN(anon_sym_POUND_CARET); END_STATE(); - case 535: + case 480: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 536: + case 481: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 537: + case 482: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 538: + case 483: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 539: + case 484: ACCEPT_TOKEN(anon_sym_POUND0A); END_STATE(); - case 540: + case 485: ACCEPT_TOKEN(anon_sym_POUND0a); END_STATE(); - case 541: + case 486: ACCEPT_TOKEN(aux_sym_regex_lit_token1); END_STATE(); - case 542: + case 487: ACCEPT_TOKEN(anon_sym_POUND_QMARK); END_STATE(); - case 543: + case 488: ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (lookahead == '@') ADVANCE(544); + if (lookahead == '@') ADVANCE(489); END_STATE(); - case 544: + case 489: ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); END_STATE(); - case 545: + case 490: ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); END_STATE(); - case 546: + case 491: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(559); + if (lookahead == ':') ADVANCE(503); END_STATE(); - case 547: + case 492: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 548: + case 493: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 549: + case 494: ACCEPT_TOKEN(anon_sym_COMMA_AT); END_STATE(); - case 550: + case 495: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 551: + case 496: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == '@') ADVANCE(549); + if (lookahead == '@') ADVANCE(494); END_STATE(); - case 552: + case 497: ACCEPT_TOKEN(sym_block_comment); END_STATE(); - case 553: + case 498: ACCEPT_TOKEN(sym_fancy_literal); END_STATE(); - case 554: - ACCEPT_TOKEN(aux_sym__format_token_token1); - END_STATE(); - case 555: + case 499: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '"') ADVANCE(346); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(127); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(70); END_STATE(); - case 556: + case 500: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '|') ADVANCE(268); + if (lookahead == '|') ADVANCE(229); END_STATE(); - case 557: + case 501: ACCEPT_TOKEN(anon_sym_v); END_STATE(); - case 558: + case 502: ACCEPT_TOKEN(anon_sym_V); END_STATE(); - case 559: + case 503: ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); - case 560: + case 504: ACCEPT_TOKEN(anon_sym_COLON_AT); END_STATE(); - case 561: + case 505: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 562: + case 506: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 563: + case 507: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 564: + case 508: ACCEPT_TOKEN(aux_sym_format_directive_type_token1); END_STATE(); - case 565: + case 509: ACCEPT_TOKEN(aux_sym_format_directive_type_token2); END_STATE(); - case 566: + case 510: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 567: + case 511: ACCEPT_TOKEN(anon_sym_CR); END_STATE(); - case 568: + case 512: ACCEPT_TOKEN(aux_sym_format_directive_type_token3); END_STATE(); - case 569: + case 513: ACCEPT_TOKEN(aux_sym_format_directive_type_token4); END_STATE(); - case 570: + case 514: ACCEPT_TOKEN(aux_sym_format_directive_type_token5); END_STATE(); - case 571: + case 515: ACCEPT_TOKEN(aux_sym_format_directive_type_token6); END_STATE(); - case 572: + case 516: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 573: + case 517: ACCEPT_TOKEN(aux_sym_format_directive_type_token7); END_STATE(); - case 574: + case 518: ACCEPT_TOKEN(aux_sym_format_directive_type_token8); END_STATE(); - case 575: + case 519: ACCEPT_TOKEN(aux_sym_format_directive_type_token9); END_STATE(); - case 576: + case 520: ACCEPT_TOKEN(aux_sym_format_directive_type_token10); END_STATE(); - case 577: + case 521: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 578: + case 522: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 579: + case 523: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 580: + case 524: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 581: + case 525: ACCEPT_TOKEN(anon_sym_Newline); END_STATE(); - case 582: + case 526: ACCEPT_TOKEN(aux_sym_format_directive_type_token11); END_STATE(); - case 583: + case 527: ACCEPT_TOKEN(anon_sym_cl); END_STATE(); - case 584: + case 528: ACCEPT_TOKEN(anon_sym_cl); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 585: + case 529: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 586: + case 530: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'i') ADVANCE(244); + if (lookahead == 'i') ADVANCE(210); END_STATE(); - case 587: + case 531: ACCEPT_TOKEN(anon_sym_in); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 588: + case 532: ACCEPT_TOKEN(anon_sym_across); END_STATE(); - case 589: + case 533: ACCEPT_TOKEN(anon_sym_across); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 590: + case 534: ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(74); + if (lookahead == ' ') ADVANCE(62); END_STATE(); - case 591: + case 535: ACCEPT_TOKEN(anon_sym_being); - if (lookahead == ' ') ADVANCE(74); - if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(532); + if (lookahead == ' ') ADVANCE(62); + if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(477); END_STATE(); - case 592: + case 536: ACCEPT_TOKEN(anon_sym_using); END_STATE(); - case 593: + case 537: ACCEPT_TOKEN(anon_sym_using); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 594: + case 538: ACCEPT_TOKEN(aux_sym_for_clause_word_token1); END_STATE(); - case 595: + case 539: ACCEPT_TOKEN(anon_sym_below); END_STATE(); - case 596: + case 540: ACCEPT_TOKEN(anon_sym_below); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 597: + case 541: ACCEPT_TOKEN(anon_sym_above); END_STATE(); - case 598: + case 542: ACCEPT_TOKEN(anon_sym_above); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 599: + case 543: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 600: + case 544: ACCEPT_TOKEN(anon_sym_from); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 601: + case 545: ACCEPT_TOKEN(anon_sym_to); END_STATE(); - case 602: + case 546: ACCEPT_TOKEN(anon_sym_to); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 603: + case 547: ACCEPT_TOKEN(anon_sym_upto); END_STATE(); - case 604: + case 548: ACCEPT_TOKEN(anon_sym_upto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 605: + case 549: + ACCEPT_TOKEN(anon_sym_upfrom); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_upfrom); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); + END_STATE(); + case 551: ACCEPT_TOKEN(anon_sym_downto); END_STATE(); - case 606: + case 552: ACCEPT_TOKEN(anon_sym_downto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 607: + case 553: ACCEPT_TOKEN(anon_sym_downfrom); END_STATE(); - case 608: + case 554: ACCEPT_TOKEN(anon_sym_downfrom); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 609: + case 555: ACCEPT_TOKEN(anon_sym_on); END_STATE(); - case 610: + case 556: ACCEPT_TOKEN(anon_sym_on); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 611: + case 557: ACCEPT_TOKEN(anon_sym_by); END_STATE(); - case 612: + case 558: ACCEPT_TOKEN(anon_sym_by); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 613: + case 559: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 614: + case 560: ACCEPT_TOKEN(anon_sym_then); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 615: + case 561: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 616: + case 562: ACCEPT_TOKEN(anon_sym_EQ); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 617: + case 563: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); END_STATE(); - case 618: + case 564: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'i') ADVANCE(160); END_STATE(); - case 619: + case 565: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'm') ADVANCE(137); + if (lookahead == 'm') ADVANCE(118); END_STATE(); - case 620: + case 566: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 621: + case 567: ACCEPT_TOKEN(anon_sym_for); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 622: + case 568: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 623: + case 569: ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 624: + case 570: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 625: + case 571: ACCEPT_TOKEN(anon_sym_as); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 626: + case 572: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 627: + case 573: ACCEPT_TOKEN(anon_sym_with); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 628: + case 574: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 629: + case 575: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'w') ADVANCE(180); + if (lookahead == 'w') ADVANCE(166); END_STATE(); - case 630: + case 576: ACCEPT_TOKEN(anon_sym_do); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 631: + case 577: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 632: + case 578: ACCEPT_TOKEN(anon_sym_while); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 633: + case 579: ACCEPT_TOKEN(anon_sym_until); END_STATE(); - case 634: + case 580: ACCEPT_TOKEN(anon_sym_until); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 635: + case 581: ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); - case 636: + case 582: ACCEPT_TOKEN(anon_sym_repeat); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 637: + case 583: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 638: + case 584: ACCEPT_TOKEN(anon_sym_when); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 639: + case 585: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 640: + case 586: ACCEPT_TOKEN(anon_sym_if); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 641: + case 587: ACCEPT_TOKEN(anon_sym_unless); END_STATE(); - case 642: + case 588: ACCEPT_TOKEN(anon_sym_unless); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 643: + case 589: ACCEPT_TOKEN(anon_sym_always); END_STATE(); - case 644: + case 590: ACCEPT_TOKEN(anon_sym_always); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 645: + case 591: ACCEPT_TOKEN(anon_sym_thereis); END_STATE(); - case 646: + case 592: ACCEPT_TOKEN(anon_sym_thereis); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 647: + case 593: ACCEPT_TOKEN(anon_sym_never); END_STATE(); - case 648: + case 594: ACCEPT_TOKEN(anon_sym_never); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 649: + case 595: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 650: + case 596: ACCEPT_TOKEN(anon_sym_else); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 651: + case 597: ACCEPT_TOKEN(anon_sym_into); END_STATE(); - case 652: + case 598: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 653: + case 599: ACCEPT_TOKEN(anon_sym_finally); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 654: + case 600: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 655: + case 601: ACCEPT_TOKEN(anon_sym_return); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 656: + case 602: ACCEPT_TOKEN(anon_sym_initially); END_STATE(); - case 657: + case 603: ACCEPT_TOKEN(anon_sym_initially); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 658: + case 604: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 659: + case 605: ACCEPT_TOKEN(anon_sym_loop); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 660: + case 606: ACCEPT_TOKEN(anon_sym_defun); END_STATE(); - case 661: + case 607: ACCEPT_TOKEN(anon_sym_defun); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 662: + case 608: ACCEPT_TOKEN(anon_sym_defmacro); END_STATE(); - case 663: + case 609: ACCEPT_TOKEN(anon_sym_defmacro); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 664: + case 610: ACCEPT_TOKEN(anon_sym_defgeneric); END_STATE(); - case 665: + case 611: ACCEPT_TOKEN(anon_sym_defgeneric); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 666: + case 612: ACCEPT_TOKEN(anon_sym_defmethod); END_STATE(); - case 667: + case 613: ACCEPT_TOKEN(anon_sym_defmethod); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 668: + case 614: ACCEPT_TOKEN(anon_sym_lambda); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(477); END_STATE(); - case 669: + case 615: ACCEPT_TOKEN(anon_sym_POUNDP); END_STATE(); - case 670: + case 616: ACCEPT_TOKEN(anon_sym_POUNDp); END_STATE(); - case 671: + case 617: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); END_STATE(); - case 672: + case 618: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); - if (lookahead == 'l') ADVANCE(583); + if (lookahead == 'l') ADVANCE(527); END_STATE(); - case 673: + case 619: ACCEPT_TOKEN(sym_self_referential_reader_macro); END_STATE(); - case 674: + case 620: ACCEPT_TOKEN(anon_sym_POUND_PLUS); END_STATE(); - case 675: + case 621: ACCEPT_TOKEN(anon_sym_POUND_DASH); END_STATE(); - case 676: + case 622: ACCEPT_TOKEN(anon_sym_POUNDC); END_STATE(); - case 677: + case 623: ACCEPT_TOKEN(anon_sym_POUNDc); END_STATE(); default: @@ -6435,1260 +6320,1260 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [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}, + [1] = {.lex_state = 247}, + [2] = {.lex_state = 9}, + [3] = {.lex_state = 9}, + [4] = {.lex_state = 9}, + [5] = {.lex_state = 9}, + [6] = {.lex_state = 9}, + [7] = {.lex_state = 9}, + [8] = {.lex_state = 9}, + [9] = {.lex_state = 9}, + [10] = {.lex_state = 9}, + [11] = {.lex_state = 9}, + [12] = {.lex_state = 9}, + [13] = {.lex_state = 9}, + [14] = {.lex_state = 9}, + [15] = {.lex_state = 9}, + [16] = {.lex_state = 11}, + [17] = {.lex_state = 9}, + [18] = {.lex_state = 9}, + [19] = {.lex_state = 9}, + [20] = {.lex_state = 9}, [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 = 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}, + [22] = {.lex_state = 9}, + [23] = {.lex_state = 9}, + [24] = {.lex_state = 9}, + [25] = {.lex_state = 9}, + [26] = {.lex_state = 9}, + [27] = {.lex_state = 9}, + [28] = {.lex_state = 9}, + [29] = {.lex_state = 9}, + [30] = {.lex_state = 9}, + [31] = {.lex_state = 9}, + [32] = {.lex_state = 11}, + [33] = {.lex_state = 9}, + [34] = {.lex_state = 9}, + [35] = {.lex_state = 9}, + [36] = {.lex_state = 9}, + [37] = {.lex_state = 11}, + [38] = {.lex_state = 9}, + [39] = {.lex_state = 9}, + [40] = {.lex_state = 9}, + [41] = {.lex_state = 9}, + [42] = {.lex_state = 11}, + [43] = {.lex_state = 11}, + [44] = {.lex_state = 11}, + [45] = {.lex_state = 11}, + [46] = {.lex_state = 11}, + [47] = {.lex_state = 11}, + [48] = {.lex_state = 11}, + [49] = {.lex_state = 11}, + [50] = {.lex_state = 11}, + [51] = {.lex_state = 11}, + [52] = {.lex_state = 11}, + [53] = {.lex_state = 11}, + [54] = {.lex_state = 11}, + [55] = {.lex_state = 11}, + [56] = {.lex_state = 16}, + [57] = {.lex_state = 11}, + [58] = {.lex_state = 11}, + [59] = {.lex_state = 11}, + [60] = {.lex_state = 16}, + [61] = {.lex_state = 11}, + [62] = {.lex_state = 11}, + [63] = {.lex_state = 11}, + [64] = {.lex_state = 11}, + [65] = {.lex_state = 11}, + [66] = {.lex_state = 11}, + [67] = {.lex_state = 11}, + [68] = {.lex_state = 11}, + [69] = {.lex_state = 16}, + [70] = {.lex_state = 11}, + [71] = {.lex_state = 11}, + [72] = {.lex_state = 11}, + [73] = {.lex_state = 11}, + [74] = {.lex_state = 11}, + [75] = {.lex_state = 11}, + [76] = {.lex_state = 11}, + [77] = {.lex_state = 11}, + [78] = {.lex_state = 11}, + [79] = {.lex_state = 11}, + [80] = {.lex_state = 11}, + [81] = {.lex_state = 11}, + [82] = {.lex_state = 11}, + [83] = {.lex_state = 11}, + [84] = {.lex_state = 11}, + [85] = {.lex_state = 11}, + [86] = {.lex_state = 11}, + [87] = {.lex_state = 11}, + [88] = {.lex_state = 11}, + [89] = {.lex_state = 11}, + [90] = {.lex_state = 11}, + [91] = {.lex_state = 11}, + [92] = {.lex_state = 11}, + [93] = {.lex_state = 11}, + [94] = {.lex_state = 16}, + [95] = {.lex_state = 11}, + [96] = {.lex_state = 11}, + [97] = {.lex_state = 11}, + [98] = {.lex_state = 11}, + [99] = {.lex_state = 11}, + [100] = {.lex_state = 11}, + [101] = {.lex_state = 11}, + [102] = {.lex_state = 11}, + [103] = {.lex_state = 11}, + [104] = {.lex_state = 11}, + [105] = {.lex_state = 11}, + [106] = {.lex_state = 11}, + [107] = {.lex_state = 11}, + [108] = {.lex_state = 11}, + [109] = {.lex_state = 11}, + [110] = {.lex_state = 11}, + [111] = {.lex_state = 11}, + [112] = {.lex_state = 11}, + [113] = {.lex_state = 11}, + [114] = {.lex_state = 11}, + [115] = {.lex_state = 11}, + [116] = {.lex_state = 11}, + [117] = {.lex_state = 11}, + [118] = {.lex_state = 11}, + [119] = {.lex_state = 11}, + [120] = {.lex_state = 11}, + [121] = {.lex_state = 11}, + [122] = {.lex_state = 11}, + [123] = {.lex_state = 11}, + [124] = {.lex_state = 11}, + [125] = {.lex_state = 11}, + [126] = {.lex_state = 11}, + [127] = {.lex_state = 11}, + [128] = {.lex_state = 11}, + [129] = {.lex_state = 11}, + [130] = {.lex_state = 11}, + [131] = {.lex_state = 11}, + [132] = {.lex_state = 11}, + [133] = {.lex_state = 11}, + [134] = {.lex_state = 11}, + [135] = {.lex_state = 11}, + [136] = {.lex_state = 11}, + [137] = {.lex_state = 11}, + [138] = {.lex_state = 11}, + [139] = {.lex_state = 11}, + [140] = {.lex_state = 11}, + [141] = {.lex_state = 11}, + [142] = {.lex_state = 11}, + [143] = {.lex_state = 11}, + [144] = {.lex_state = 11}, + [145] = {.lex_state = 11}, + [146] = {.lex_state = 11}, + [147] = {.lex_state = 11}, + [148] = {.lex_state = 11}, + [149] = {.lex_state = 11}, + [150] = {.lex_state = 11}, + [151] = {.lex_state = 11}, + [152] = {.lex_state = 11}, + [153] = {.lex_state = 11}, + [154] = {.lex_state = 11}, + [155] = {.lex_state = 11}, + [156] = {.lex_state = 11}, + [157] = {.lex_state = 11}, + [158] = {.lex_state = 11}, + [159] = {.lex_state = 11}, + [160] = {.lex_state = 11}, + [161] = {.lex_state = 11}, + [162] = {.lex_state = 11}, + [163] = {.lex_state = 11}, + [164] = {.lex_state = 11}, + [165] = {.lex_state = 11}, + [166] = {.lex_state = 11}, + [167] = {.lex_state = 11}, + [168] = {.lex_state = 11}, + [169] = {.lex_state = 11}, + [170] = {.lex_state = 11}, + [171] = {.lex_state = 11}, + [172] = {.lex_state = 11}, + [173] = {.lex_state = 11}, + [174] = {.lex_state = 11}, + [175] = {.lex_state = 11}, + [176] = {.lex_state = 11}, + [177] = {.lex_state = 11}, + [178] = {.lex_state = 11}, + [179] = {.lex_state = 16}, + [180] = {.lex_state = 11}, + [181] = {.lex_state = 11}, + [182] = {.lex_state = 11}, + [183] = {.lex_state = 11}, + [184] = {.lex_state = 11}, + [185] = {.lex_state = 11}, + [186] = {.lex_state = 11}, + [187] = {.lex_state = 11}, + [188] = {.lex_state = 11}, + [189] = {.lex_state = 11}, + [190] = {.lex_state = 11}, + [191] = {.lex_state = 11}, + [192] = {.lex_state = 11}, + [193] = {.lex_state = 11}, + [194] = {.lex_state = 11}, + [195] = {.lex_state = 11}, + [196] = {.lex_state = 11}, + [197] = {.lex_state = 11}, + [198] = {.lex_state = 11}, + [199] = {.lex_state = 11}, + [200] = {.lex_state = 11}, + [201] = {.lex_state = 11}, + [202] = {.lex_state = 11}, + [203] = {.lex_state = 11}, + [204] = {.lex_state = 11}, + [205] = {.lex_state = 11}, + [206] = {.lex_state = 11}, + [207] = {.lex_state = 11}, + [208] = {.lex_state = 11}, + [209] = {.lex_state = 11}, + [210] = {.lex_state = 11}, + [211] = {.lex_state = 11}, + [212] = {.lex_state = 11}, + [213] = {.lex_state = 11}, + [214] = {.lex_state = 11}, + [215] = {.lex_state = 11}, + [216] = {.lex_state = 11}, + [217] = {.lex_state = 11}, + [218] = {.lex_state = 11}, + [219] = {.lex_state = 11}, + [220] = {.lex_state = 11}, + [221] = {.lex_state = 11}, + [222] = {.lex_state = 11}, + [223] = {.lex_state = 11}, + [224] = {.lex_state = 11}, + [225] = {.lex_state = 11}, + [226] = {.lex_state = 11}, + [227] = {.lex_state = 16}, + [228] = {.lex_state = 11}, + [229] = {.lex_state = 16}, + [230] = {.lex_state = 11}, + [231] = {.lex_state = 11}, + [232] = {.lex_state = 11}, + [233] = {.lex_state = 11}, + [234] = {.lex_state = 11}, + [235] = {.lex_state = 11}, + [236] = {.lex_state = 11}, + [237] = {.lex_state = 11}, + [238] = {.lex_state = 11}, + [239] = {.lex_state = 11}, + [240] = {.lex_state = 11}, + [241] = {.lex_state = 11}, + [242] = {.lex_state = 11}, + [243] = {.lex_state = 11}, + [244] = {.lex_state = 11}, + [245] = {.lex_state = 11}, + [246] = {.lex_state = 11}, + [247] = {.lex_state = 16}, + [248] = {.lex_state = 11}, + [249] = {.lex_state = 16}, + [250] = {.lex_state = 11}, + [251] = {.lex_state = 11}, + [252] = {.lex_state = 11}, + [253] = {.lex_state = 11}, + [254] = {.lex_state = 11}, + [255] = {.lex_state = 11}, + [256] = {.lex_state = 11}, + [257] = {.lex_state = 11}, + [258] = {.lex_state = 11}, + [259] = {.lex_state = 11}, + [260] = {.lex_state = 11}, + [261] = {.lex_state = 11}, + [262] = {.lex_state = 11}, + [263] = {.lex_state = 11}, + [264] = {.lex_state = 11}, + [265] = {.lex_state = 11}, + [266] = {.lex_state = 11}, + [267] = {.lex_state = 11}, + [268] = {.lex_state = 11}, + [269] = {.lex_state = 11}, + [270] = {.lex_state = 16}, + [271] = {.lex_state = 16}, + [272] = {.lex_state = 16}, + [273] = {.lex_state = 16}, + [274] = {.lex_state = 16}, + [275] = {.lex_state = 16}, + [276] = {.lex_state = 16}, + [277] = {.lex_state = 16}, + [278] = {.lex_state = 16}, + [279] = {.lex_state = 14}, + [280] = {.lex_state = 14}, + [281] = {.lex_state = 14}, + [282] = {.lex_state = 14}, + [283] = {.lex_state = 14}, + [284] = {.lex_state = 14}, + [285] = {.lex_state = 14}, + [286] = {.lex_state = 14}, + [287] = {.lex_state = 14}, + [288] = {.lex_state = 14}, + [289] = {.lex_state = 247}, + [290] = {.lex_state = 247}, + [291] = {.lex_state = 247}, + [292] = {.lex_state = 247}, + [293] = {.lex_state = 247}, + [294] = {.lex_state = 247}, + [295] = {.lex_state = 247}, + [296] = {.lex_state = 247}, + [297] = {.lex_state = 247}, + [298] = {.lex_state = 247}, + [299] = {.lex_state = 247}, + [300] = {.lex_state = 247}, + [301] = {.lex_state = 247}, + [302] = {.lex_state = 247}, + [303] = {.lex_state = 247}, + [304] = {.lex_state = 247}, + [305] = {.lex_state = 247}, + [306] = {.lex_state = 247}, + [307] = {.lex_state = 247}, + [308] = {.lex_state = 247}, + [309] = {.lex_state = 247}, + [310] = {.lex_state = 247}, + [311] = {.lex_state = 247}, + [312] = {.lex_state = 247}, + [313] = {.lex_state = 247}, + [314] = {.lex_state = 247}, + [315] = {.lex_state = 247}, + [316] = {.lex_state = 247}, + [317] = {.lex_state = 247}, + [318] = {.lex_state = 247}, + [319] = {.lex_state = 247}, + [320] = {.lex_state = 247}, + [321] = {.lex_state = 247}, + [322] = {.lex_state = 247}, + [323] = {.lex_state = 247}, + [324] = {.lex_state = 247}, + [325] = {.lex_state = 247}, + [326] = {.lex_state = 247}, + [327] = {.lex_state = 247}, + [328] = {.lex_state = 247}, + [329] = {.lex_state = 247}, + [330] = {.lex_state = 247}, + [331] = {.lex_state = 247}, + [332] = {.lex_state = 247}, + [333] = {.lex_state = 247}, + [334] = {.lex_state = 247}, + [335] = {.lex_state = 247}, + [336] = {.lex_state = 247}, + [337] = {.lex_state = 247}, + [338] = {.lex_state = 247}, + [339] = {.lex_state = 247}, + [340] = {.lex_state = 247}, + [341] = {.lex_state = 247}, + [342] = {.lex_state = 247}, + [343] = {.lex_state = 247}, + [344] = {.lex_state = 247}, + [345] = {.lex_state = 247}, + [346] = {.lex_state = 247}, + [347] = {.lex_state = 247}, + [348] = {.lex_state = 247}, + [349] = {.lex_state = 247}, + [350] = {.lex_state = 247}, + [351] = {.lex_state = 247}, + [352] = {.lex_state = 247}, + [353] = {.lex_state = 247}, + [354] = {.lex_state = 247}, + [355] = {.lex_state = 247}, + [356] = {.lex_state = 247}, + [357] = {.lex_state = 247}, + [358] = {.lex_state = 247}, + [359] = {.lex_state = 247}, + [360] = {.lex_state = 247}, + [361] = {.lex_state = 247}, + [362] = {.lex_state = 247}, + [363] = {.lex_state = 247}, + [364] = {.lex_state = 247}, + [365] = {.lex_state = 247}, + [366] = {.lex_state = 247}, + [367] = {.lex_state = 247}, + [368] = {.lex_state = 247}, + [369] = {.lex_state = 247}, + [370] = {.lex_state = 247}, + [371] = {.lex_state = 247}, + [372] = {.lex_state = 247}, + [373] = {.lex_state = 247}, + [374] = {.lex_state = 247}, + [375] = {.lex_state = 247}, + [376] = {.lex_state = 247}, + [377] = {.lex_state = 247}, + [378] = {.lex_state = 247}, + [379] = {.lex_state = 247}, + [380] = {.lex_state = 247}, + [381] = {.lex_state = 247}, + [382] = {.lex_state = 247}, + [383] = {.lex_state = 247}, + [384] = {.lex_state = 247}, + [385] = {.lex_state = 247}, + [386] = {.lex_state = 247}, + [387] = {.lex_state = 247}, + [388] = {.lex_state = 247}, + [389] = {.lex_state = 247}, + [390] = {.lex_state = 247}, + [391] = {.lex_state = 247}, + [392] = {.lex_state = 247}, + [393] = {.lex_state = 247}, + [394] = {.lex_state = 247}, + [395] = {.lex_state = 247}, + [396] = {.lex_state = 247}, + [397] = {.lex_state = 247}, + [398] = {.lex_state = 247}, + [399] = {.lex_state = 247}, + [400] = {.lex_state = 247}, + [401] = {.lex_state = 247}, + [402] = {.lex_state = 247}, + [403] = {.lex_state = 247}, + [404] = {.lex_state = 247}, + [405] = {.lex_state = 247}, + [406] = {.lex_state = 247}, + [407] = {.lex_state = 247}, + [408] = {.lex_state = 247}, + [409] = {.lex_state = 247}, + [410] = {.lex_state = 247}, + [411] = {.lex_state = 247}, + [412] = {.lex_state = 247}, + [413] = {.lex_state = 247}, + [414] = {.lex_state = 247}, + [415] = {.lex_state = 247}, + [416] = {.lex_state = 247}, + [417] = {.lex_state = 247}, + [418] = {.lex_state = 247}, + [419] = {.lex_state = 247}, + [420] = {.lex_state = 247}, + [421] = {.lex_state = 247}, + [422] = {.lex_state = 247}, + [423] = {.lex_state = 247}, + [424] = {.lex_state = 247}, + [425] = {.lex_state = 247}, + [426] = {.lex_state = 247}, + [427] = {.lex_state = 247}, + [428] = {.lex_state = 247}, + [429] = {.lex_state = 247}, + [430] = {.lex_state = 247}, + [431] = {.lex_state = 247}, + [432] = {.lex_state = 247}, + [433] = {.lex_state = 247}, + [434] = {.lex_state = 247}, + [435] = {.lex_state = 247}, + [436] = {.lex_state = 247}, + [437] = {.lex_state = 247}, + [438] = {.lex_state = 247}, + [439] = {.lex_state = 247}, + [440] = {.lex_state = 247}, + [441] = {.lex_state = 247}, + [442] = {.lex_state = 247}, + [443] = {.lex_state = 247}, + [444] = {.lex_state = 247}, + [445] = {.lex_state = 247}, + [446] = {.lex_state = 247}, + [447] = {.lex_state = 247}, + [448] = {.lex_state = 247}, + [449] = {.lex_state = 247}, + [450] = {.lex_state = 247}, + [451] = {.lex_state = 247}, + [452] = {.lex_state = 247}, + [453] = {.lex_state = 247}, + [454] = {.lex_state = 247}, + [455] = {.lex_state = 247}, + [456] = {.lex_state = 247}, + [457] = {.lex_state = 247}, + [458] = {.lex_state = 247}, + [459] = {.lex_state = 247}, + [460] = {.lex_state = 247}, + [461] = {.lex_state = 247}, + [462] = {.lex_state = 247}, + [463] = {.lex_state = 247}, + [464] = {.lex_state = 247}, + [465] = {.lex_state = 247}, + [466] = {.lex_state = 247}, + [467] = {.lex_state = 247}, + [468] = {.lex_state = 247}, + [469] = {.lex_state = 247}, + [470] = {.lex_state = 247}, + [471] = {.lex_state = 247}, + [472] = {.lex_state = 247}, + [473] = {.lex_state = 247}, + [474] = {.lex_state = 247}, + [475] = {.lex_state = 247}, + [476] = {.lex_state = 247}, + [477] = {.lex_state = 247}, + [478] = {.lex_state = 247}, + [479] = {.lex_state = 247}, + [480] = {.lex_state = 247}, + [481] = {.lex_state = 247}, + [482] = {.lex_state = 247}, + [483] = {.lex_state = 247}, + [484] = {.lex_state = 247}, + [485] = {.lex_state = 247}, + [486] = {.lex_state = 247}, + [487] = {.lex_state = 247}, + [488] = {.lex_state = 247}, + [489] = {.lex_state = 247}, + [490] = {.lex_state = 247}, + [491] = {.lex_state = 247}, + [492] = {.lex_state = 247}, + [493] = {.lex_state = 247}, + [494] = {.lex_state = 247}, + [495] = {.lex_state = 247}, + [496] = {.lex_state = 247}, + [497] = {.lex_state = 247}, + [498] = {.lex_state = 247}, + [499] = {.lex_state = 247}, + [500] = {.lex_state = 247}, + [501] = {.lex_state = 247}, + [502] = {.lex_state = 247}, + [503] = {.lex_state = 247}, + [504] = {.lex_state = 247}, + [505] = {.lex_state = 247}, + [506] = {.lex_state = 247}, + [507] = {.lex_state = 247}, + [508] = {.lex_state = 247}, + [509] = {.lex_state = 247}, + [510] = {.lex_state = 247}, + [511] = {.lex_state = 247}, + [512] = {.lex_state = 247}, + [513] = {.lex_state = 247}, + [514] = {.lex_state = 247}, + [515] = {.lex_state = 247}, + [516] = {.lex_state = 247}, + [517] = {.lex_state = 247}, + [518] = {.lex_state = 247}, + [519] = {.lex_state = 247}, + [520] = {.lex_state = 247}, + [521] = {.lex_state = 247}, + [522] = {.lex_state = 247}, + [523] = {.lex_state = 247}, + [524] = {.lex_state = 247}, + [525] = {.lex_state = 247}, + [526] = {.lex_state = 247}, + [527] = {.lex_state = 247}, + [528] = {.lex_state = 247}, + [529] = {.lex_state = 247}, + [530] = {.lex_state = 247}, + [531] = {.lex_state = 247}, + [532] = {.lex_state = 247}, + [533] = {.lex_state = 247}, + [534] = {.lex_state = 247}, + [535] = {.lex_state = 247}, + [536] = {.lex_state = 247}, + [537] = {.lex_state = 247}, + [538] = {.lex_state = 247}, + [539] = {.lex_state = 247}, + [540] = {.lex_state = 247}, + [541] = {.lex_state = 247}, + [542] = {.lex_state = 247}, + [543] = {.lex_state = 247}, + [544] = {.lex_state = 247}, + [545] = {.lex_state = 247}, + [546] = {.lex_state = 247}, + [547] = {.lex_state = 247}, + [548] = {.lex_state = 247}, + [549] = {.lex_state = 247}, + [550] = {.lex_state = 247}, + [551] = {.lex_state = 247}, + [552] = {.lex_state = 247}, + [553] = {.lex_state = 247}, + [554] = {.lex_state = 247}, + [555] = {.lex_state = 247}, + [556] = {.lex_state = 247}, + [557] = {.lex_state = 247}, + [558] = {.lex_state = 247}, + [559] = {.lex_state = 247}, + [560] = {.lex_state = 247}, + [561] = {.lex_state = 247}, + [562] = {.lex_state = 247}, + [563] = {.lex_state = 247}, + [564] = {.lex_state = 247}, + [565] = {.lex_state = 247}, + [566] = {.lex_state = 247}, + [567] = {.lex_state = 247}, + [568] = {.lex_state = 247}, + [569] = {.lex_state = 247}, + [570] = {.lex_state = 247}, + [571] = {.lex_state = 247}, + [572] = {.lex_state = 247}, + [573] = {.lex_state = 247}, + [574] = {.lex_state = 247}, + [575] = {.lex_state = 247}, + [576] = {.lex_state = 247}, + [577] = {.lex_state = 247}, + [578] = {.lex_state = 247}, + [579] = {.lex_state = 247}, + [580] = {.lex_state = 247}, + [581] = {.lex_state = 247}, + [582] = {.lex_state = 247}, + [583] = {.lex_state = 247}, + [584] = {.lex_state = 247}, + [585] = {.lex_state = 247}, + [586] = {.lex_state = 247}, + [587] = {.lex_state = 247}, + [588] = {.lex_state = 247}, + [589] = {.lex_state = 247}, + [590] = {.lex_state = 247}, + [591] = {.lex_state = 247}, + [592] = {.lex_state = 247}, + [593] = {.lex_state = 247}, + [594] = {.lex_state = 247}, + [595] = {.lex_state = 247}, + [596] = {.lex_state = 247}, + [597] = {.lex_state = 247}, + [598] = {.lex_state = 247}, + [599] = {.lex_state = 247}, + [600] = {.lex_state = 247}, + [601] = {.lex_state = 247}, + [602] = {.lex_state = 247}, + [603] = {.lex_state = 247}, + [604] = {.lex_state = 247}, + [605] = {.lex_state = 247}, + [606] = {.lex_state = 247}, + [607] = {.lex_state = 247}, + [608] = {.lex_state = 247}, + [609] = {.lex_state = 247}, + [610] = {.lex_state = 247}, + [611] = {.lex_state = 247}, + [612] = {.lex_state = 247}, + [613] = {.lex_state = 247}, + [614] = {.lex_state = 247}, + [615] = {.lex_state = 247}, + [616] = {.lex_state = 247}, + [617] = {.lex_state = 247}, + [618] = {.lex_state = 247}, + [619] = {.lex_state = 247}, + [620] = {.lex_state = 247}, + [621] = {.lex_state = 247}, + [622] = {.lex_state = 247}, + [623] = {.lex_state = 247}, + [624] = {.lex_state = 247}, + [625] = {.lex_state = 247}, + [626] = {.lex_state = 247}, + [627] = {.lex_state = 247}, + [628] = {.lex_state = 247}, + [629] = {.lex_state = 247}, + [630] = {.lex_state = 247}, + [631] = {.lex_state = 247}, + [632] = {.lex_state = 247}, + [633] = {.lex_state = 247}, + [634] = {.lex_state = 247}, + [635] = {.lex_state = 247}, + [636] = {.lex_state = 247}, + [637] = {.lex_state = 247}, + [638] = {.lex_state = 247}, + [639] = {.lex_state = 247}, + [640] = {.lex_state = 247}, + [641] = {.lex_state = 247}, + [642] = {.lex_state = 247}, + [643] = {.lex_state = 247}, + [644] = {.lex_state = 247}, + [645] = {.lex_state = 247}, + [646] = {.lex_state = 247}, + [647] = {.lex_state = 247}, + [648] = {.lex_state = 247}, + [649] = {.lex_state = 247}, + [650] = {.lex_state = 247}, + [651] = {.lex_state = 247}, + [652] = {.lex_state = 247}, + [653] = {.lex_state = 247}, + [654] = {.lex_state = 247}, + [655] = {.lex_state = 247}, + [656] = {.lex_state = 247}, + [657] = {.lex_state = 247}, + [658] = {.lex_state = 247}, + [659] = {.lex_state = 247}, + [660] = {.lex_state = 247}, + [661] = {.lex_state = 247}, + [662] = {.lex_state = 247}, + [663] = {.lex_state = 247}, + [664] = {.lex_state = 247}, + [665] = {.lex_state = 247}, + [666] = {.lex_state = 247}, + [667] = {.lex_state = 247}, + [668] = {.lex_state = 247}, + [669] = {.lex_state = 247}, + [670] = {.lex_state = 247}, + [671] = {.lex_state = 247}, + [672] = {.lex_state = 247}, + [673] = {.lex_state = 247}, + [674] = {.lex_state = 247}, + [675] = {.lex_state = 247}, + [676] = {.lex_state = 247}, + [677] = {.lex_state = 247}, + [678] = {.lex_state = 247}, + [679] = {.lex_state = 247}, + [680] = {.lex_state = 247}, + [681] = {.lex_state = 247}, + [682] = {.lex_state = 247}, + [683] = {.lex_state = 247}, + [684] = {.lex_state = 247}, + [685] = {.lex_state = 247}, + [686] = {.lex_state = 247}, + [687] = {.lex_state = 247}, + [688] = {.lex_state = 247}, + [689] = {.lex_state = 247}, + [690] = {.lex_state = 247}, + [691] = {.lex_state = 247}, + [692] = {.lex_state = 247}, + [693] = {.lex_state = 247}, + [694] = {.lex_state = 247}, + [695] = {.lex_state = 247}, + [696] = {.lex_state = 247}, + [697] = {.lex_state = 247}, + [698] = {.lex_state = 247}, + [699] = {.lex_state = 247}, + [700] = {.lex_state = 247}, + [701] = {.lex_state = 247}, + [702] = {.lex_state = 247}, + [703] = {.lex_state = 247}, + [704] = {.lex_state = 247}, + [705] = {.lex_state = 247}, + [706] = {.lex_state = 247}, + [707] = {.lex_state = 247}, + [708] = {.lex_state = 247}, + [709] = {.lex_state = 247}, + [710] = {.lex_state = 247}, + [711] = {.lex_state = 247}, + [712] = {.lex_state = 247}, + [713] = {.lex_state = 247}, + [714] = {.lex_state = 247}, + [715] = {.lex_state = 247}, + [716] = {.lex_state = 247}, + [717] = {.lex_state = 247}, + [718] = {.lex_state = 247}, + [719] = {.lex_state = 247}, + [720] = {.lex_state = 247}, + [721] = {.lex_state = 247}, + [722] = {.lex_state = 247}, + [723] = {.lex_state = 247}, + [724] = {.lex_state = 247}, + [725] = {.lex_state = 247}, + [726] = {.lex_state = 247}, + [727] = {.lex_state = 247}, + [728] = {.lex_state = 247}, + [729] = {.lex_state = 247}, + [730] = {.lex_state = 247}, + [731] = {.lex_state = 247}, + [732] = {.lex_state = 247}, + [733] = {.lex_state = 247}, + [734] = {.lex_state = 247}, + [735] = {.lex_state = 247}, + [736] = {.lex_state = 247}, + [737] = {.lex_state = 247}, + [738] = {.lex_state = 247}, + [739] = {.lex_state = 247}, + [740] = {.lex_state = 247}, + [741] = {.lex_state = 247}, + [742] = {.lex_state = 247}, + [743] = {.lex_state = 247}, + [744] = {.lex_state = 247}, + [745] = {.lex_state = 247}, + [746] = {.lex_state = 247}, + [747] = {.lex_state = 247}, + [748] = {.lex_state = 247}, + [749] = {.lex_state = 247}, + [750] = {.lex_state = 247}, + [751] = {.lex_state = 247}, + [752] = {.lex_state = 247}, + [753] = {.lex_state = 247}, + [754] = {.lex_state = 247}, + [755] = {.lex_state = 247}, + [756] = {.lex_state = 247}, + [757] = {.lex_state = 247}, + [758] = {.lex_state = 247}, + [759] = {.lex_state = 247}, + [760] = {.lex_state = 247}, + [761] = {.lex_state = 247}, + [762] = {.lex_state = 247}, + [763] = {.lex_state = 247}, + [764] = {.lex_state = 247}, + [765] = {.lex_state = 247}, + [766] = {.lex_state = 247}, + [767] = {.lex_state = 247}, + [768] = {.lex_state = 247}, + [769] = {.lex_state = 247}, + [770] = {.lex_state = 247}, + [771] = {.lex_state = 247}, + [772] = {.lex_state = 247}, + [773] = {.lex_state = 247}, + [774] = {.lex_state = 247}, + [775] = {.lex_state = 247}, + [776] = {.lex_state = 247}, + [777] = {.lex_state = 247}, + [778] = {.lex_state = 247}, + [779] = {.lex_state = 247}, + [780] = {.lex_state = 247}, + [781] = {.lex_state = 247}, + [782] = {.lex_state = 247}, + [783] = {.lex_state = 247}, + [784] = {.lex_state = 247}, + [785] = {.lex_state = 247}, + [786] = {.lex_state = 247}, + [787] = {.lex_state = 247}, + [788] = {.lex_state = 247}, + [789] = {.lex_state = 247}, + [790] = {.lex_state = 247}, + [791] = {.lex_state = 247}, + [792] = {.lex_state = 247}, + [793] = {.lex_state = 247}, + [794] = {.lex_state = 247}, + [795] = {.lex_state = 247}, + [796] = {.lex_state = 247}, + [797] = {.lex_state = 247}, + [798] = {.lex_state = 247}, + [799] = {.lex_state = 247}, + [800] = {.lex_state = 247}, + [801] = {.lex_state = 247}, + [802] = {.lex_state = 247}, + [803] = {.lex_state = 247}, + [804] = {.lex_state = 247}, + [805] = {.lex_state = 247}, + [806] = {.lex_state = 247}, + [807] = {.lex_state = 247}, + [808] = {.lex_state = 247}, + [809] = {.lex_state = 247}, + [810] = {.lex_state = 247}, + [811] = {.lex_state = 247}, + [812] = {.lex_state = 247}, + [813] = {.lex_state = 247}, + [814] = {.lex_state = 247}, + [815] = {.lex_state = 247}, + [816] = {.lex_state = 247}, + [817] = {.lex_state = 247}, + [818] = {.lex_state = 247}, + [819] = {.lex_state = 247}, + [820] = {.lex_state = 247}, + [821] = {.lex_state = 247}, + [822] = {.lex_state = 247}, + [823] = {.lex_state = 247}, + [824] = {.lex_state = 247}, + [825] = {.lex_state = 247}, + [826] = {.lex_state = 247}, + [827] = {.lex_state = 247}, + [828] = {.lex_state = 247}, + [829] = {.lex_state = 247}, + [830] = {.lex_state = 247}, + [831] = {.lex_state = 247}, + [832] = {.lex_state = 247}, + [833] = {.lex_state = 247}, + [834] = {.lex_state = 247}, + [835] = {.lex_state = 247}, + [836] = {.lex_state = 247}, + [837] = {.lex_state = 247}, + [838] = {.lex_state = 247}, + [839] = {.lex_state = 247}, + [840] = {.lex_state = 247}, + [841] = {.lex_state = 247}, + [842] = {.lex_state = 247}, + [843] = {.lex_state = 247}, + [844] = {.lex_state = 247}, + [845] = {.lex_state = 247}, + [846] = {.lex_state = 247}, + [847] = {.lex_state = 247}, + [848] = {.lex_state = 247}, + [849] = {.lex_state = 247}, + [850] = {.lex_state = 247}, + [851] = {.lex_state = 247}, + [852] = {.lex_state = 247}, + [853] = {.lex_state = 247}, + [854] = {.lex_state = 247}, + [855] = {.lex_state = 247}, + [856] = {.lex_state = 247}, + [857] = {.lex_state = 247}, + [858] = {.lex_state = 247}, + [859] = {.lex_state = 247}, + [860] = {.lex_state = 247}, + [861] = {.lex_state = 247}, + [862] = {.lex_state = 247}, + [863] = {.lex_state = 247}, + [864] = {.lex_state = 247}, + [865] = {.lex_state = 247}, + [866] = {.lex_state = 247}, + [867] = {.lex_state = 247}, + [868] = {.lex_state = 247}, + [869] = {.lex_state = 247}, + [870] = {.lex_state = 247}, + [871] = {.lex_state = 247}, + [872] = {.lex_state = 247}, + [873] = {.lex_state = 247}, + [874] = {.lex_state = 247}, + [875] = {.lex_state = 247}, + [876] = {.lex_state = 247}, + [877] = {.lex_state = 247}, + [878] = {.lex_state = 247}, + [879] = {.lex_state = 247}, + [880] = {.lex_state = 247}, + [881] = {.lex_state = 247}, + [882] = {.lex_state = 247}, + [883] = {.lex_state = 247}, + [884] = {.lex_state = 247}, + [885] = {.lex_state = 247}, + [886] = {.lex_state = 247}, + [887] = {.lex_state = 247}, + [888] = {.lex_state = 247}, + [889] = {.lex_state = 247}, + [890] = {.lex_state = 247}, + [891] = {.lex_state = 247}, + [892] = {.lex_state = 247}, + [893] = {.lex_state = 247}, + [894] = {.lex_state = 247}, + [895] = {.lex_state = 247}, + [896] = {.lex_state = 247}, + [897] = {.lex_state = 247}, + [898] = {.lex_state = 247}, + [899] = {.lex_state = 247}, + [900] = {.lex_state = 247}, + [901] = {.lex_state = 247}, + [902] = {.lex_state = 247}, + [903] = {.lex_state = 247}, + [904] = {.lex_state = 247}, + [905] = {.lex_state = 247}, + [906] = {.lex_state = 247}, + [907] = {.lex_state = 247}, + [908] = {.lex_state = 247}, + [909] = {.lex_state = 247}, + [910] = {.lex_state = 247}, + [911] = {.lex_state = 247}, + [912] = {.lex_state = 247}, + [913] = {.lex_state = 247}, + [914] = {.lex_state = 247}, + [915] = {.lex_state = 247}, + [916] = {.lex_state = 247}, + [917] = {.lex_state = 247}, + [918] = {.lex_state = 247}, + [919] = {.lex_state = 247}, + [920] = {.lex_state = 247}, + [921] = {.lex_state = 247}, + [922] = {.lex_state = 247}, + [923] = {.lex_state = 247}, + [924] = {.lex_state = 247}, + [925] = {.lex_state = 247}, + [926] = {.lex_state = 247}, + [927] = {.lex_state = 247}, + [928] = {.lex_state = 247}, + [929] = {.lex_state = 247}, + [930] = {.lex_state = 247}, + [931] = {.lex_state = 247}, + [932] = {.lex_state = 247}, + [933] = {.lex_state = 247}, + [934] = {.lex_state = 247}, + [935] = {.lex_state = 247}, + [936] = {.lex_state = 247}, + [937] = {.lex_state = 247}, + [938] = {.lex_state = 247}, + [939] = {.lex_state = 247}, + [940] = {.lex_state = 247}, + [941] = {.lex_state = 247}, + [942] = {.lex_state = 247}, + [943] = {.lex_state = 247}, + [944] = {.lex_state = 247}, + [945] = {.lex_state = 247}, + [946] = {.lex_state = 247}, + [947] = {.lex_state = 247}, + [948] = {.lex_state = 247}, + [949] = {.lex_state = 247}, + [950] = {.lex_state = 247}, + [951] = {.lex_state = 247}, + [952] = {.lex_state = 247}, + [953] = {.lex_state = 247}, + [954] = {.lex_state = 247}, + [955] = {.lex_state = 247}, + [956] = {.lex_state = 247}, + [957] = {.lex_state = 247}, + [958] = {.lex_state = 247}, + [959] = {.lex_state = 247}, + [960] = {.lex_state = 247}, + [961] = {.lex_state = 247}, + [962] = {.lex_state = 247}, + [963] = {.lex_state = 247}, + [964] = {.lex_state = 247}, + [965] = {.lex_state = 247}, + [966] = {.lex_state = 247}, + [967] = {.lex_state = 247}, + [968] = {.lex_state = 247}, + [969] = {.lex_state = 247}, + [970] = {.lex_state = 247}, + [971] = {.lex_state = 247}, + [972] = {.lex_state = 247}, + [973] = {.lex_state = 247}, + [974] = {.lex_state = 247}, + [975] = {.lex_state = 247}, + [976] = {.lex_state = 17}, + [977] = {.lex_state = 17}, + [978] = {.lex_state = 17}, + [979] = {.lex_state = 17}, + [980] = {.lex_state = 17}, + [981] = {.lex_state = 17}, + [982] = {.lex_state = 17}, + [983] = {.lex_state = 17}, + [984] = {.lex_state = 17}, + [985] = {.lex_state = 17}, + [986] = {.lex_state = 17}, + [987] = {.lex_state = 17}, + [988] = {.lex_state = 17}, + [989] = {.lex_state = 17}, + [990] = {.lex_state = 9}, + [991] = {.lex_state = 11}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 11}, + [995] = {.lex_state = 11}, + [996] = {.lex_state = 10}, + [997] = {.lex_state = 9}, + [998] = {.lex_state = 9}, + [999] = {.lex_state = 9}, + [1000] = {.lex_state = 9}, + [1001] = {.lex_state = 9}, + [1002] = {.lex_state = 9}, + [1003] = {.lex_state = 9}, + [1004] = {.lex_state = 9}, + [1005] = {.lex_state = 9}, + [1006] = {.lex_state = 9}, + [1007] = {.lex_state = 9}, + [1008] = {.lex_state = 9}, + [1009] = {.lex_state = 9}, + [1010] = {.lex_state = 9}, + [1011] = {.lex_state = 9}, + [1012] = {.lex_state = 9}, + [1013] = {.lex_state = 9}, + [1014] = {.lex_state = 9}, + [1015] = {.lex_state = 9}, + [1016] = {.lex_state = 9}, + [1017] = {.lex_state = 9}, + [1018] = {.lex_state = 9}, + [1019] = {.lex_state = 9}, + [1020] = {.lex_state = 9}, + [1021] = {.lex_state = 9}, + [1022] = {.lex_state = 9}, + [1023] = {.lex_state = 9}, + [1024] = {.lex_state = 9}, + [1025] = {.lex_state = 9}, + [1026] = {.lex_state = 9}, + [1027] = {.lex_state = 9}, + [1028] = {.lex_state = 9}, + [1029] = {.lex_state = 9}, + [1030] = {.lex_state = 9}, + [1031] = {.lex_state = 9}, + [1032] = {.lex_state = 9}, + [1033] = {.lex_state = 9}, + [1034] = {.lex_state = 9}, + [1035] = {.lex_state = 9}, + [1036] = {.lex_state = 9}, + [1037] = {.lex_state = 9}, + [1038] = {.lex_state = 9}, + [1039] = {.lex_state = 9}, + [1040] = {.lex_state = 9}, + [1041] = {.lex_state = 9}, + [1042] = {.lex_state = 9}, + [1043] = {.lex_state = 9}, + [1044] = {.lex_state = 9}, + [1045] = {.lex_state = 9}, + [1046] = {.lex_state = 9}, + [1047] = {.lex_state = 9}, + [1048] = {.lex_state = 9}, + [1049] = {.lex_state = 9}, + [1050] = {.lex_state = 9}, + [1051] = {.lex_state = 9}, + [1052] = {.lex_state = 9}, + [1053] = {.lex_state = 9}, + [1054] = {.lex_state = 9}, + [1055] = {.lex_state = 9}, + [1056] = {.lex_state = 9}, + [1057] = {.lex_state = 9}, + [1058] = {.lex_state = 9}, + [1059] = {.lex_state = 9}, + [1060] = {.lex_state = 9}, + [1061] = {.lex_state = 9}, + [1062] = {.lex_state = 9}, + [1063] = {.lex_state = 9}, + [1064] = {.lex_state = 9}, + [1065] = {.lex_state = 9}, + [1066] = {.lex_state = 9}, + [1067] = {.lex_state = 9}, + [1068] = {.lex_state = 9}, + [1069] = {.lex_state = 9}, + [1070] = {.lex_state = 9}, + [1071] = {.lex_state = 9}, + [1072] = {.lex_state = 9}, + [1073] = {.lex_state = 9}, + [1074] = {.lex_state = 9}, + [1075] = {.lex_state = 9}, + [1076] = {.lex_state = 9}, + [1077] = {.lex_state = 9}, + [1078] = {.lex_state = 9}, + [1079] = {.lex_state = 9}, + [1080] = {.lex_state = 9}, + [1081] = {.lex_state = 9}, + [1082] = {.lex_state = 9}, + [1083] = {.lex_state = 9}, + [1084] = {.lex_state = 9}, + [1085] = {.lex_state = 9}, + [1086] = {.lex_state = 9}, + [1087] = {.lex_state = 9}, + [1088] = {.lex_state = 9}, + [1089] = {.lex_state = 9}, + [1090] = {.lex_state = 9}, + [1091] = {.lex_state = 9}, + [1092] = {.lex_state = 9}, + [1093] = {.lex_state = 9}, + [1094] = {.lex_state = 9}, + [1095] = {.lex_state = 9}, + [1096] = {.lex_state = 9}, + [1097] = {.lex_state = 9}, + [1098] = {.lex_state = 9}, + [1099] = {.lex_state = 9}, + [1100] = {.lex_state = 9}, + [1101] = {.lex_state = 9}, + [1102] = {.lex_state = 9}, + [1103] = {.lex_state = 9}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 9}, + [1106] = {.lex_state = 9}, + [1107] = {.lex_state = 9}, + [1108] = {.lex_state = 9}, + [1109] = {.lex_state = 9}, + [1110] = {.lex_state = 9}, + [1111] = {.lex_state = 9}, + [1112] = {.lex_state = 9}, + [1113] = {.lex_state = 9}, + [1114] = {.lex_state = 12}, + [1115] = {.lex_state = 9}, + [1116] = {.lex_state = 9}, + [1117] = {.lex_state = 9}, + [1118] = {.lex_state = 9}, + [1119] = {.lex_state = 9}, + [1120] = {.lex_state = 9}, + [1121] = {.lex_state = 9}, + [1122] = {.lex_state = 9}, + [1123] = {.lex_state = 9}, + [1124] = {.lex_state = 9}, + [1125] = {.lex_state = 9}, + [1126] = {.lex_state = 9}, + [1127] = {.lex_state = 9}, + [1128] = {.lex_state = 9}, + [1129] = {.lex_state = 9}, + [1130] = {.lex_state = 9}, + [1131] = {.lex_state = 9}, + [1132] = {.lex_state = 11}, + [1133] = {.lex_state = 11}, + [1134] = {.lex_state = 11}, + [1135] = {.lex_state = 11}, + [1136] = {.lex_state = 11}, + [1137] = {.lex_state = 11}, + [1138] = {.lex_state = 11}, + [1139] = {.lex_state = 11}, + [1140] = {.lex_state = 11}, + [1141] = {.lex_state = 11}, + [1142] = {.lex_state = 11}, + [1143] = {.lex_state = 11}, + [1144] = {.lex_state = 11}, + [1145] = {.lex_state = 11}, + [1146] = {.lex_state = 11}, + [1147] = {.lex_state = 16}, + [1148] = {.lex_state = 11}, + [1149] = {.lex_state = 11}, + [1150] = {.lex_state = 11}, + [1151] = {.lex_state = 11}, + [1152] = {.lex_state = 11}, + [1153] = {.lex_state = 11}, + [1154] = {.lex_state = 11}, + [1155] = {.lex_state = 11}, + [1156] = {.lex_state = 11}, + [1157] = {.lex_state = 11}, + [1158] = {.lex_state = 11}, + [1159] = {.lex_state = 11}, + [1160] = {.lex_state = 11}, + [1161] = {.lex_state = 11}, + [1162] = {.lex_state = 11}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 11}, + [1165] = {.lex_state = 11}, + [1166] = {.lex_state = 11}, + [1167] = {.lex_state = 11}, + [1168] = {.lex_state = 11}, + [1169] = {.lex_state = 11}, + [1170] = {.lex_state = 11}, + [1171] = {.lex_state = 11}, + [1172] = {.lex_state = 11}, + [1173] = {.lex_state = 11}, + [1174] = {.lex_state = 11}, + [1175] = {.lex_state = 11}, + [1176] = {.lex_state = 11}, + [1177] = {.lex_state = 11}, + [1178] = {.lex_state = 11}, + [1179] = {.lex_state = 11}, + [1180] = {.lex_state = 11}, + [1181] = {.lex_state = 11}, + [1182] = {.lex_state = 11}, + [1183] = {.lex_state = 11}, + [1184] = {.lex_state = 11}, + [1185] = {.lex_state = 11}, + [1186] = {.lex_state = 11}, + [1187] = {.lex_state = 11}, + [1188] = {.lex_state = 11}, + [1189] = {.lex_state = 11}, + [1190] = {.lex_state = 11}, + [1191] = {.lex_state = 11}, + [1192] = {.lex_state = 11}, + [1193] = {.lex_state = 11}, + [1194] = {.lex_state = 11}, + [1195] = {.lex_state = 11}, + [1196] = {.lex_state = 11}, + [1197] = {.lex_state = 11}, + [1198] = {.lex_state = 11}, + [1199] = {.lex_state = 11}, + [1200] = {.lex_state = 11}, + [1201] = {.lex_state = 11}, + [1202] = {.lex_state = 11}, + [1203] = {.lex_state = 11}, + [1204] = {.lex_state = 11}, + [1205] = {.lex_state = 11}, + [1206] = {.lex_state = 11}, + [1207] = {.lex_state = 11}, + [1208] = {.lex_state = 11}, + [1209] = {.lex_state = 11}, + [1210] = {.lex_state = 11}, + [1211] = {.lex_state = 11}, + [1212] = {.lex_state = 11}, + [1213] = {.lex_state = 11}, + [1214] = {.lex_state = 11}, + [1215] = {.lex_state = 11}, + [1216] = {.lex_state = 11}, + [1217] = {.lex_state = 11}, + [1218] = {.lex_state = 11}, + [1219] = {.lex_state = 11}, + [1220] = {.lex_state = 11}, + [1221] = {.lex_state = 11}, + [1222] = {.lex_state = 11}, + [1223] = {.lex_state = 11}, + [1224] = {.lex_state = 11}, + [1225] = {.lex_state = 11}, + [1226] = {.lex_state = 11}, + [1227] = {.lex_state = 11}, + [1228] = {.lex_state = 11}, + [1229] = {.lex_state = 11}, + [1230] = {.lex_state = 11}, + [1231] = {.lex_state = 11}, + [1232] = {.lex_state = 11}, + [1233] = {.lex_state = 11}, + [1234] = {.lex_state = 11}, + [1235] = {.lex_state = 11}, + [1236] = {.lex_state = 11}, + [1237] = {.lex_state = 11}, + [1238] = {.lex_state = 11}, + [1239] = {.lex_state = 11}, + [1240] = {.lex_state = 11}, + [1241] = {.lex_state = 11}, + [1242] = {.lex_state = 11}, + [1243] = {.lex_state = 11}, + [1244] = {.lex_state = 11}, + [1245] = {.lex_state = 11}, + [1246] = {.lex_state = 11}, + [1247] = {.lex_state = 11}, + [1248] = {.lex_state = 11}, + [1249] = {.lex_state = 11}, + [1250] = {.lex_state = 11}, + [1251] = {.lex_state = 11}, + [1252] = {.lex_state = 11}, + [1253] = {.lex_state = 11}, + [1254] = {.lex_state = 11}, [1255] = {.lex_state = 22}, [1256] = {.lex_state = 22}, [1257] = {.lex_state = 22}, @@ -7717,2232 +7602,2888 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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}, - [1427] = {.lex_state = 1}, - [1428] = {.lex_state = 1}, - [1429] = {.lex_state = 1}, - [1430] = {.lex_state = 1}, - [1431] = {.lex_state = 1}, - [1432] = {.lex_state = 1}, - [1433] = {.lex_state = 1}, - [1434] = {.lex_state = 1}, - [1435] = {.lex_state = 1}, - [1436] = {.lex_state = 1}, - [1437] = {.lex_state = 1}, - [1438] = {.lex_state = 1}, - [1439] = {.lex_state = 1}, - [1440] = {.lex_state = 1}, - [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 = 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 = 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 = 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 = 17}, - [2167] = {.lex_state = 29}, - [2168] = {.lex_state = 29}, - [2169] = {.lex_state = 29}, - [2170] = {.lex_state = 17}, - [2171] = {.lex_state = 29}, - [2172] = {.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 = 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}, + [1283] = {.lex_state = 15}, + [1284] = {.lex_state = 16}, + [1285] = {.lex_state = 25}, + [1286] = {.lex_state = 25}, + [1287] = {.lex_state = 25}, + [1288] = {.lex_state = 25}, + [1289] = {.lex_state = 25}, + [1290] = {.lex_state = 25}, + [1291] = {.lex_state = 25}, + [1292] = {.lex_state = 25}, + [1293] = {.lex_state = 25}, + [1294] = {.lex_state = 25}, + [1295] = {.lex_state = 25}, + [1296] = {.lex_state = 25}, + [1297] = {.lex_state = 25}, + [1298] = {.lex_state = 25}, + [1299] = {.lex_state = 25}, + [1300] = {.lex_state = 25}, + [1301] = {.lex_state = 25}, + [1302] = {.lex_state = 25}, + [1303] = {.lex_state = 25}, + [1304] = {.lex_state = 25}, + [1305] = {.lex_state = 25}, + [1306] = {.lex_state = 25}, + [1307] = {.lex_state = 25}, + [1308] = {.lex_state = 25}, + [1309] = {.lex_state = 25}, + [1310] = {.lex_state = 25}, + [1311] = {.lex_state = 25}, + [1312] = {.lex_state = 25}, + [1313] = {.lex_state = 25}, + [1314] = {.lex_state = 25}, + [1315] = {.lex_state = 25}, + [1316] = {.lex_state = 25}, + [1317] = {.lex_state = 25}, + [1318] = {.lex_state = 25}, + [1319] = {.lex_state = 25}, + [1320] = {.lex_state = 25}, + [1321] = {.lex_state = 25}, + [1322] = {.lex_state = 25}, + [1323] = {.lex_state = 25}, + [1324] = {.lex_state = 25}, + [1325] = {.lex_state = 25}, + [1326] = {.lex_state = 25}, + [1327] = {.lex_state = 25}, + [1328] = {.lex_state = 25}, + [1329] = {.lex_state = 25}, + [1330] = {.lex_state = 25}, + [1331] = {.lex_state = 25}, + [1332] = {.lex_state = 25}, + [1333] = {.lex_state = 25}, + [1334] = {.lex_state = 25}, + [1335] = {.lex_state = 25}, + [1336] = {.lex_state = 25}, + [1337] = {.lex_state = 25}, + [1338] = {.lex_state = 25}, + [1339] = {.lex_state = 25}, + [1340] = {.lex_state = 25}, + [1341] = {.lex_state = 25}, + [1342] = {.lex_state = 25}, + [1343] = {.lex_state = 25}, + [1344] = {.lex_state = 25}, + [1345] = {.lex_state = 25}, + [1346] = {.lex_state = 25}, + [1347] = {.lex_state = 25}, + [1348] = {.lex_state = 25}, + [1349] = {.lex_state = 25}, + [1350] = {.lex_state = 25}, + [1351] = {.lex_state = 25}, + [1352] = {.lex_state = 25}, + [1353] = {.lex_state = 25}, + [1354] = {.lex_state = 25}, + [1355] = {.lex_state = 25}, + [1356] = {.lex_state = 25}, + [1357] = {.lex_state = 25}, + [1358] = {.lex_state = 25}, + [1359] = {.lex_state = 25}, + [1360] = {.lex_state = 25}, + [1361] = {.lex_state = 25}, + [1362] = {.lex_state = 25}, + [1363] = {.lex_state = 25}, + [1364] = {.lex_state = 25}, + [1365] = {.lex_state = 25}, + [1366] = {.lex_state = 16}, + [1367] = {.lex_state = 16}, + [1368] = {.lex_state = 16}, + [1369] = {.lex_state = 16}, + [1370] = {.lex_state = 16}, + [1371] = {.lex_state = 16}, + [1372] = {.lex_state = 16}, + [1373] = {.lex_state = 16}, + [1374] = {.lex_state = 16}, + [1375] = {.lex_state = 16}, + [1376] = {.lex_state = 16}, + [1377] = {.lex_state = 16}, + [1378] = {.lex_state = 16}, + [1379] = {.lex_state = 16}, + [1380] = {.lex_state = 16}, + [1381] = {.lex_state = 16}, + [1382] = {.lex_state = 16}, + [1383] = {.lex_state = 16}, + [1384] = {.lex_state = 16}, + [1385] = {.lex_state = 16}, + [1386] = {.lex_state = 16}, + [1387] = {.lex_state = 16}, + [1388] = {.lex_state = 16}, + [1389] = {.lex_state = 16}, + [1390] = {.lex_state = 16}, + [1391] = {.lex_state = 16}, + [1392] = {.lex_state = 16}, + [1393] = {.lex_state = 16}, + [1394] = {.lex_state = 16}, + [1395] = {.lex_state = 16}, + [1396] = {.lex_state = 16}, + [1397] = {.lex_state = 16}, + [1398] = {.lex_state = 16}, + [1399] = {.lex_state = 16}, + [1400] = {.lex_state = 16}, + [1401] = {.lex_state = 16}, + [1402] = {.lex_state = 16}, + [1403] = {.lex_state = 16}, + [1404] = {.lex_state = 16}, + [1405] = {.lex_state = 16}, + [1406] = {.lex_state = 16}, + [1407] = {.lex_state = 16}, + [1408] = {.lex_state = 16}, + [1409] = {.lex_state = 16}, + [1410] = {.lex_state = 16}, + [1411] = {.lex_state = 16}, + [1412] = {.lex_state = 16}, + [1413] = {.lex_state = 16}, + [1414] = {.lex_state = 16}, + [1415] = {.lex_state = 16}, + [1416] = {.lex_state = 16}, + [1417] = {.lex_state = 16}, + [1418] = {.lex_state = 16}, + [1419] = {.lex_state = 16}, + [1420] = {.lex_state = 16}, + [1421] = {.lex_state = 16}, + [1422] = {.lex_state = 16}, + [1423] = {.lex_state = 16}, + [1424] = {.lex_state = 16}, + [1425] = {.lex_state = 16}, + [1426] = {.lex_state = 16}, + [1427] = {.lex_state = 16}, + [1428] = {.lex_state = 16}, + [1429] = {.lex_state = 16}, + [1430] = {.lex_state = 16}, + [1431] = {.lex_state = 16}, + [1432] = {.lex_state = 16}, + [1433] = {.lex_state = 16}, + [1434] = {.lex_state = 16}, + [1435] = {.lex_state = 16}, + [1436] = {.lex_state = 16}, + [1437] = {.lex_state = 16}, + [1438] = {.lex_state = 16}, + [1439] = {.lex_state = 16}, + [1440] = {.lex_state = 16}, + [1441] = {.lex_state = 16}, + [1442] = {.lex_state = 16}, + [1443] = {.lex_state = 16}, + [1444] = {.lex_state = 16}, + [1445] = {.lex_state = 16}, + [1446] = {.lex_state = 16}, + [1447] = {.lex_state = 16}, + [1448] = {.lex_state = 16}, + [1449] = {.lex_state = 16}, + [1450] = {.lex_state = 16}, + [1451] = {.lex_state = 16}, + [1452] = {.lex_state = 16}, + [1453] = {.lex_state = 16}, + [1454] = {.lex_state = 16}, + [1455] = {.lex_state = 16}, + [1456] = {.lex_state = 16}, + [1457] = {.lex_state = 16}, + [1458] = {.lex_state = 16}, + [1459] = {.lex_state = 16}, + [1460] = {.lex_state = 16}, + [1461] = {.lex_state = 16}, + [1462] = {.lex_state = 16}, + [1463] = {.lex_state = 16}, + [1464] = {.lex_state = 16}, + [1465] = {.lex_state = 16}, + [1466] = {.lex_state = 16}, + [1467] = {.lex_state = 16}, + [1468] = {.lex_state = 16}, + [1469] = {.lex_state = 16}, + [1470] = {.lex_state = 16}, + [1471] = {.lex_state = 16}, + [1472] = {.lex_state = 16}, + [1473] = {.lex_state = 16}, + [1474] = {.lex_state = 16}, + [1475] = {.lex_state = 16}, + [1476] = {.lex_state = 16}, + [1477] = {.lex_state = 16}, + [1478] = {.lex_state = 16}, + [1479] = {.lex_state = 16}, + [1480] = {.lex_state = 16}, + [1481] = {.lex_state = 16}, + [1482] = {.lex_state = 16}, + [1483] = {.lex_state = 16}, + [1484] = {.lex_state = 16}, + [1485] = {.lex_state = 16}, + [1486] = {.lex_state = 16}, + [1487] = {.lex_state = 22}, + [1488] = {.lex_state = 22}, + [1489] = {.lex_state = 22}, + [1490] = {.lex_state = 22}, + [1491] = {.lex_state = 22}, + [1492] = {.lex_state = 22}, + [1493] = {.lex_state = 22}, + [1494] = {.lex_state = 22}, + [1495] = {.lex_state = 22}, + [1496] = {.lex_state = 22}, + [1497] = {.lex_state = 22}, + [1498] = {.lex_state = 22}, + [1499] = {.lex_state = 22}, + [1500] = {.lex_state = 22}, + [1501] = {.lex_state = 22}, + [1502] = {.lex_state = 22}, + [1503] = {.lex_state = 22}, + [1504] = {.lex_state = 22}, + [1505] = {.lex_state = 22}, + [1506] = {.lex_state = 22}, + [1507] = {.lex_state = 22}, + [1508] = {.lex_state = 22}, + [1509] = {.lex_state = 22}, + [1510] = {.lex_state = 22}, + [1511] = {.lex_state = 22}, + [1512] = {.lex_state = 22}, + [1513] = {.lex_state = 22}, + [1514] = {.lex_state = 22}, + [1515] = {.lex_state = 22}, + [1516] = {.lex_state = 22}, + [1517] = {.lex_state = 22}, + [1518] = {.lex_state = 22}, + [1519] = {.lex_state = 22}, + [1520] = {.lex_state = 22}, + [1521] = {.lex_state = 22}, + [1522] = {.lex_state = 22}, + [1523] = {.lex_state = 22}, + [1524] = {.lex_state = 22}, + [1525] = {.lex_state = 22}, + [1526] = {.lex_state = 22}, + [1527] = {.lex_state = 22}, + [1528] = {.lex_state = 22}, + [1529] = {.lex_state = 22}, + [1530] = {.lex_state = 22}, + [1531] = {.lex_state = 22}, + [1532] = {.lex_state = 22}, + [1533] = {.lex_state = 22}, + [1534] = {.lex_state = 22}, + [1535] = {.lex_state = 22}, + [1536] = {.lex_state = 22}, + [1537] = {.lex_state = 22}, + [1538] = {.lex_state = 22}, + [1539] = {.lex_state = 22}, + [1540] = {.lex_state = 22}, + [1541] = {.lex_state = 22}, + [1542] = {.lex_state = 22}, + [1543] = {.lex_state = 22}, + [1544] = {.lex_state = 22}, + [1545] = {.lex_state = 22}, + [1546] = {.lex_state = 22}, + [1547] = {.lex_state = 22}, + [1548] = {.lex_state = 22}, + [1549] = {.lex_state = 22}, + [1550] = {.lex_state = 22}, + [1551] = {.lex_state = 22}, + [1552] = {.lex_state = 22}, + [1553] = {.lex_state = 22}, + [1554] = {.lex_state = 22}, + [1555] = {.lex_state = 22}, + [1556] = {.lex_state = 22}, + [1557] = {.lex_state = 22}, + [1558] = {.lex_state = 22}, + [1559] = {.lex_state = 22}, + [1560] = {.lex_state = 22}, + [1561] = {.lex_state = 22}, + [1562] = {.lex_state = 22}, + [1563] = {.lex_state = 22}, + [1564] = {.lex_state = 22}, + [1565] = {.lex_state = 22}, + [1566] = {.lex_state = 22}, + [1567] = {.lex_state = 22}, + [1568] = {.lex_state = 22}, + [1569] = {.lex_state = 22}, + [1570] = {.lex_state = 22}, + [1571] = {.lex_state = 22}, + [1572] = {.lex_state = 22}, + [1573] = {.lex_state = 22}, + [1574] = {.lex_state = 22}, + [1575] = {.lex_state = 22}, + [1576] = {.lex_state = 22}, + [1577] = {.lex_state = 22}, + [1578] = {.lex_state = 22}, + [1579] = {.lex_state = 22}, + [1580] = {.lex_state = 22}, + [1581] = {.lex_state = 22}, + [1582] = {.lex_state = 22}, + [1583] = {.lex_state = 22}, + [1584] = {.lex_state = 22}, + [1585] = {.lex_state = 22}, + [1586] = {.lex_state = 22}, + [1587] = {.lex_state = 22}, + [1588] = {.lex_state = 22}, + [1589] = {.lex_state = 22}, + [1590] = {.lex_state = 22}, + [1591] = {.lex_state = 22}, + [1592] = {.lex_state = 22}, + [1593] = {.lex_state = 22}, + [1594] = {.lex_state = 22}, + [1595] = {.lex_state = 22}, + [1596] = {.lex_state = 22}, + [1597] = {.lex_state = 22}, + [1598] = {.lex_state = 22}, + [1599] = {.lex_state = 22}, + [1600] = {.lex_state = 22}, + [1601] = {.lex_state = 22}, + [1602] = {.lex_state = 22}, + [1603] = {.lex_state = 22}, + [1604] = {.lex_state = 22}, + [1605] = {.lex_state = 22}, + [1606] = {.lex_state = 22}, + [1607] = {.lex_state = 22}, + [1608] = {.lex_state = 22}, + [1609] = {.lex_state = 22}, + [1610] = {.lex_state = 22}, + [1611] = {.lex_state = 22}, + [1612] = {.lex_state = 22}, + [1613] = {.lex_state = 14}, + [1614] = {.lex_state = 14}, + [1615] = {.lex_state = 14}, + [1616] = {.lex_state = 14}, + [1617] = {.lex_state = 14}, + [1618] = {.lex_state = 14}, + [1619] = {.lex_state = 14}, + [1620] = {.lex_state = 14}, + [1621] = {.lex_state = 14}, + [1622] = {.lex_state = 14}, + [1623] = {.lex_state = 13}, + [1624] = {.lex_state = 14}, + [1625] = {.lex_state = 14}, + [1626] = {.lex_state = 14}, + [1627] = {.lex_state = 14}, + [1628] = {.lex_state = 14}, + [1629] = {.lex_state = 14}, + [1630] = {.lex_state = 14}, + [1631] = {.lex_state = 14}, + [1632] = {.lex_state = 14}, + [1633] = {.lex_state = 14}, + [1634] = {.lex_state = 14}, + [1635] = {.lex_state = 14}, + [1636] = {.lex_state = 14}, + [1637] = {.lex_state = 14}, + [1638] = {.lex_state = 14}, + [1639] = {.lex_state = 14}, + [1640] = {.lex_state = 14}, + [1641] = {.lex_state = 14}, + [1642] = {.lex_state = 14}, + [1643] = {.lex_state = 14}, + [1644] = {.lex_state = 14}, + [1645] = {.lex_state = 14}, + [1646] = {.lex_state = 14}, + [1647] = {.lex_state = 14}, + [1648] = {.lex_state = 14}, + [1649] = {.lex_state = 14}, + [1650] = {.lex_state = 14}, + [1651] = {.lex_state = 14}, + [1652] = {.lex_state = 14}, + [1653] = {.lex_state = 14}, + [1654] = {.lex_state = 14}, + [1655] = {.lex_state = 14}, + [1656] = {.lex_state = 14}, + [1657] = {.lex_state = 14}, + [1658] = {.lex_state = 14}, + [1659] = {.lex_state = 14}, + [1660] = {.lex_state = 14}, + [1661] = {.lex_state = 14}, + [1662] = {.lex_state = 14}, + [1663] = {.lex_state = 14}, + [1664] = {.lex_state = 14}, + [1665] = {.lex_state = 14}, + [1666] = {.lex_state = 14}, + [1667] = {.lex_state = 14}, + [1668] = {.lex_state = 14}, + [1669] = {.lex_state = 14}, + [1670] = {.lex_state = 14}, + [1671] = {.lex_state = 14}, + [1672] = {.lex_state = 14}, + [1673] = {.lex_state = 14}, + [1674] = {.lex_state = 14}, + [1675] = {.lex_state = 14}, + [1676] = {.lex_state = 14}, + [1677] = {.lex_state = 14}, + [1678] = {.lex_state = 14}, + [1679] = {.lex_state = 14}, + [1680] = {.lex_state = 14}, + [1681] = {.lex_state = 14}, + [1682] = {.lex_state = 14}, + [1683] = {.lex_state = 14}, + [1684] = {.lex_state = 14}, + [1685] = {.lex_state = 14}, + [1686] = {.lex_state = 14}, + [1687] = {.lex_state = 14}, + [1688] = {.lex_state = 14}, + [1689] = {.lex_state = 14}, + [1690] = {.lex_state = 14}, + [1691] = {.lex_state = 14}, + [1692] = {.lex_state = 14}, + [1693] = {.lex_state = 14}, + [1694] = {.lex_state = 14}, + [1695] = {.lex_state = 14}, + [1696] = {.lex_state = 14}, + [1697] = {.lex_state = 14}, + [1698] = {.lex_state = 14}, + [1699] = {.lex_state = 14}, + [1700] = {.lex_state = 14}, + [1701] = {.lex_state = 14}, + [1702] = {.lex_state = 14}, + [1703] = {.lex_state = 14}, + [1704] = {.lex_state = 14}, + [1705] = {.lex_state = 14}, + [1706] = {.lex_state = 14}, + [1707] = {.lex_state = 14}, + [1708] = {.lex_state = 14}, + [1709] = {.lex_state = 14}, + [1710] = {.lex_state = 14}, + [1711] = {.lex_state = 14}, + [1712] = {.lex_state = 14}, + [1713] = {.lex_state = 14}, + [1714] = {.lex_state = 14}, + [1715] = {.lex_state = 14}, + [1716] = {.lex_state = 14}, + [1717] = {.lex_state = 14}, + [1718] = {.lex_state = 14}, + [1719] = {.lex_state = 14}, + [1720] = {.lex_state = 14}, + [1721] = {.lex_state = 14}, + [1722] = {.lex_state = 14}, + [1723] = {.lex_state = 14}, + [1724] = {.lex_state = 14}, + [1725] = {.lex_state = 14}, + [1726] = {.lex_state = 14}, + [1727] = {.lex_state = 14}, + [1728] = {.lex_state = 14}, + [1729] = {.lex_state = 14}, + [1730] = {.lex_state = 14}, + [1731] = {.lex_state = 14}, + [1732] = {.lex_state = 14}, + [1733] = {.lex_state = 14}, + [1734] = {.lex_state = 14}, + [1735] = {.lex_state = 14}, + [1736] = {.lex_state = 14}, + [1737] = {.lex_state = 14}, + [1738] = {.lex_state = 14}, + [1739] = {.lex_state = 14}, + [1740] = {.lex_state = 14}, + [1741] = {.lex_state = 14}, + [1742] = {.lex_state = 14}, + [1743] = {.lex_state = 14}, + [1744] = {.lex_state = 14}, + [1745] = {.lex_state = 14}, + [1746] = {.lex_state = 1}, + [1747] = {.lex_state = 1}, + [1748] = {.lex_state = 1}, + [1749] = {.lex_state = 1}, + [1750] = {.lex_state = 1}, + [1751] = {.lex_state = 1}, + [1752] = {.lex_state = 1}, + [1753] = {.lex_state = 1}, + [1754] = {.lex_state = 1}, + [1755] = {.lex_state = 1}, + [1756] = {.lex_state = 1}, + [1757] = {.lex_state = 1}, + [1758] = {.lex_state = 1}, + [1759] = {.lex_state = 1}, + [1760] = {.lex_state = 1}, + [1761] = {.lex_state = 1}, + [1762] = {.lex_state = 1}, + [1763] = {.lex_state = 1}, + [1764] = {.lex_state = 1}, + [1765] = {.lex_state = 1}, + [1766] = {.lex_state = 1}, + [1767] = {.lex_state = 247}, + [1768] = {.lex_state = 247}, + [1769] = {.lex_state = 247}, + [1770] = {.lex_state = 247}, + [1771] = {.lex_state = 247}, + [1772] = {.lex_state = 247}, + [1773] = {.lex_state = 247}, + [1774] = {.lex_state = 247}, + [1775] = {.lex_state = 247}, + [1776] = {.lex_state = 247}, + [1777] = {.lex_state = 247}, + [1778] = {.lex_state = 247}, + [1779] = {.lex_state = 247}, + [1780] = {.lex_state = 247}, + [1781] = {.lex_state = 247}, + [1782] = {.lex_state = 247}, + [1783] = {.lex_state = 247}, + [1784] = {.lex_state = 247}, + [1785] = {.lex_state = 247}, + [1786] = {.lex_state = 247}, + [1787] = {.lex_state = 247}, + [1788] = {.lex_state = 247}, + [1789] = {.lex_state = 247}, + [1790] = {.lex_state = 247}, + [1791] = {.lex_state = 247}, + [1792] = {.lex_state = 247}, + [1793] = {.lex_state = 247}, + [1794] = {.lex_state = 247}, + [1795] = {.lex_state = 247}, + [1796] = {.lex_state = 247}, + [1797] = {.lex_state = 247}, + [1798] = {.lex_state = 247}, + [1799] = {.lex_state = 247}, + [1800] = {.lex_state = 247}, + [1801] = {.lex_state = 247}, + [1802] = {.lex_state = 247}, + [1803] = {.lex_state = 247}, + [1804] = {.lex_state = 247}, + [1805] = {.lex_state = 247}, + [1806] = {.lex_state = 247}, + [1807] = {.lex_state = 247}, + [1808] = {.lex_state = 247}, + [1809] = {.lex_state = 247}, + [1810] = {.lex_state = 247}, + [1811] = {.lex_state = 247}, + [1812] = {.lex_state = 247}, + [1813] = {.lex_state = 247}, + [1814] = {.lex_state = 247}, + [1815] = {.lex_state = 247}, + [1816] = {.lex_state = 247}, + [1817] = {.lex_state = 247}, + [1818] = {.lex_state = 247}, + [1819] = {.lex_state = 247}, + [1820] = {.lex_state = 247}, + [1821] = {.lex_state = 247}, + [1822] = {.lex_state = 247}, + [1823] = {.lex_state = 247}, + [1824] = {.lex_state = 247}, + [1825] = {.lex_state = 247}, + [1826] = {.lex_state = 247}, + [1827] = {.lex_state = 247}, + [1828] = {.lex_state = 247}, + [1829] = {.lex_state = 247}, + [1830] = {.lex_state = 247}, + [1831] = {.lex_state = 247}, + [1832] = {.lex_state = 247}, + [1833] = {.lex_state = 247}, + [1834] = {.lex_state = 247}, + [1835] = {.lex_state = 247}, + [1836] = {.lex_state = 247}, + [1837] = {.lex_state = 247}, + [1838] = {.lex_state = 247}, + [1839] = {.lex_state = 247}, + [1840] = {.lex_state = 247}, + [1841] = {.lex_state = 247}, + [1842] = {.lex_state = 247}, + [1843] = {.lex_state = 247}, + [1844] = {.lex_state = 247}, + [1845] = {.lex_state = 247}, + [1846] = {.lex_state = 247}, + [1847] = {.lex_state = 247}, + [1848] = {.lex_state = 247}, + [1849] = {.lex_state = 247}, + [1850] = {.lex_state = 247}, + [1851] = {.lex_state = 247}, + [1852] = {.lex_state = 247}, + [1853] = {.lex_state = 247}, + [1854] = {.lex_state = 247}, + [1855] = {.lex_state = 247}, + [1856] = {.lex_state = 247}, + [1857] = {.lex_state = 247}, + [1858] = {.lex_state = 247}, + [1859] = {.lex_state = 247}, + [1860] = {.lex_state = 247}, + [1861] = {.lex_state = 247}, + [1862] = {.lex_state = 247}, + [1863] = {.lex_state = 247}, + [1864] = {.lex_state = 247}, + [1865] = {.lex_state = 247}, + [1866] = {.lex_state = 247}, + [1867] = {.lex_state = 247}, + [1868] = {.lex_state = 247}, + [1869] = {.lex_state = 247}, + [1870] = {.lex_state = 247}, + [1871] = {.lex_state = 247}, + [1872] = {.lex_state = 247}, + [1873] = {.lex_state = 248}, + [1874] = {.lex_state = 247}, + [1875] = {.lex_state = 247}, + [1876] = {.lex_state = 247}, + [1877] = {.lex_state = 247}, + [1878] = {.lex_state = 247}, + [1879] = {.lex_state = 247}, + [1880] = {.lex_state = 247}, + [1881] = {.lex_state = 247}, + [1882] = {.lex_state = 247}, + [1883] = {.lex_state = 247}, + [1884] = {.lex_state = 247}, + [1885] = {.lex_state = 247}, + [1886] = {.lex_state = 247}, + [1887] = {.lex_state = 247}, + [1888] = {.lex_state = 247}, + [1889] = {.lex_state = 247}, + [1890] = {.lex_state = 28}, + [1891] = {.lex_state = 28}, + [1892] = {.lex_state = 28}, + [1893] = {.lex_state = 28}, + [1894] = {.lex_state = 28}, + [1895] = {.lex_state = 28}, + [1896] = {.lex_state = 28}, + [1897] = {.lex_state = 28}, + [1898] = {.lex_state = 28}, + [1899] = {.lex_state = 28}, + [1900] = {.lex_state = 28}, + [1901] = {.lex_state = 28}, + [1902] = {.lex_state = 28}, + [1903] = {.lex_state = 28}, + [1904] = {.lex_state = 28}, + [1905] = {.lex_state = 28}, + [1906] = {.lex_state = 28}, + [1907] = {.lex_state = 28}, + [1908] = {.lex_state = 28}, + [1909] = {.lex_state = 28}, + [1910] = {.lex_state = 28}, + [1911] = {.lex_state = 28}, + [1912] = {.lex_state = 28}, + [1913] = {.lex_state = 28}, + [1914] = {.lex_state = 28}, + [1915] = {.lex_state = 28}, + [1916] = {.lex_state = 28}, + [1917] = {.lex_state = 28}, + [1918] = {.lex_state = 28}, + [1919] = {.lex_state = 28}, + [1920] = {.lex_state = 28}, + [1921] = {.lex_state = 28}, + [1922] = {.lex_state = 28}, + [1923] = {.lex_state = 28}, + [1924] = {.lex_state = 28}, + [1925] = {.lex_state = 28}, + [1926] = {.lex_state = 28}, + [1927] = {.lex_state = 28}, + [1928] = {.lex_state = 28}, + [1929] = {.lex_state = 28}, + [1930] = {.lex_state = 28}, + [1931] = {.lex_state = 28}, + [1932] = {.lex_state = 28}, + [1933] = {.lex_state = 28}, + [1934] = {.lex_state = 28}, + [1935] = {.lex_state = 28}, + [1936] = {.lex_state = 28}, + [1937] = {.lex_state = 28}, + [1938] = {.lex_state = 28}, + [1939] = {.lex_state = 28}, + [1940] = {.lex_state = 28}, + [1941] = {.lex_state = 28}, + [1942] = {.lex_state = 28}, + [1943] = {.lex_state = 28}, + [1944] = {.lex_state = 28}, + [1945] = {.lex_state = 28}, + [1946] = {.lex_state = 28}, + [1947] = {.lex_state = 28}, + [1948] = {.lex_state = 28}, + [1949] = {.lex_state = 28}, + [1950] = {.lex_state = 28}, + [1951] = {.lex_state = 28}, + [1952] = {.lex_state = 28}, + [1953] = {.lex_state = 28}, + [1954] = {.lex_state = 28}, + [1955] = {.lex_state = 28}, + [1956] = {.lex_state = 28}, + [1957] = {.lex_state = 28}, + [1958] = {.lex_state = 28}, + [1959] = {.lex_state = 28}, + [1960] = {.lex_state = 28}, + [1961] = {.lex_state = 28}, + [1962] = {.lex_state = 28}, + [1963] = {.lex_state = 28}, + [1964] = {.lex_state = 28}, + [1965] = {.lex_state = 28}, + [1966] = {.lex_state = 28}, + [1967] = {.lex_state = 247}, + [1968] = {.lex_state = 28}, + [1969] = {.lex_state = 28}, + [1970] = {.lex_state = 28}, + [1971] = {.lex_state = 28}, + [1972] = {.lex_state = 28}, + [1973] = {.lex_state = 28}, + [1974] = {.lex_state = 28}, + [1975] = {.lex_state = 28}, + [1976] = {.lex_state = 28}, + [1977] = {.lex_state = 28}, + [1978] = {.lex_state = 247}, + [1979] = {.lex_state = 247}, + [1980] = {.lex_state = 247}, + [1981] = {.lex_state = 247}, + [1982] = {.lex_state = 247}, + [1983] = {.lex_state = 247}, + [1984] = {.lex_state = 247}, + [1985] = {.lex_state = 247}, + [1986] = {.lex_state = 247}, + [1987] = {.lex_state = 247}, + [1988] = {.lex_state = 247}, + [1989] = {.lex_state = 247}, + [1990] = {.lex_state = 247}, + [1991] = {.lex_state = 247}, + [1992] = {.lex_state = 247}, + [1993] = {.lex_state = 247}, + [1994] = {.lex_state = 247}, + [1995] = {.lex_state = 247}, + [1996] = {.lex_state = 247}, + [1997] = {.lex_state = 247}, + [1998] = {.lex_state = 247}, + [1999] = {.lex_state = 247}, + [2000] = {.lex_state = 247}, + [2001] = {.lex_state = 247}, + [2002] = {.lex_state = 247}, + [2003] = {.lex_state = 247}, + [2004] = {.lex_state = 247}, + [2005] = {.lex_state = 247}, + [2006] = {.lex_state = 1}, + [2007] = {.lex_state = 247}, + [2008] = {.lex_state = 247}, + [2009] = {.lex_state = 247}, + [2010] = {.lex_state = 247}, + [2011] = {.lex_state = 247}, + [2012] = {.lex_state = 247}, + [2013] = {.lex_state = 247}, + [2014] = {.lex_state = 247}, + [2015] = {.lex_state = 247}, + [2016] = {.lex_state = 247}, + [2017] = {.lex_state = 247}, + [2018] = {.lex_state = 247}, + [2019] = {.lex_state = 247}, + [2020] = {.lex_state = 247}, + [2021] = {.lex_state = 247}, + [2022] = {.lex_state = 247}, + [2023] = {.lex_state = 247}, + [2024] = {.lex_state = 247}, + [2025] = {.lex_state = 247}, + [2026] = {.lex_state = 247}, + [2027] = {.lex_state = 247}, + [2028] = {.lex_state = 247}, + [2029] = {.lex_state = 247}, + [2030] = {.lex_state = 247}, + [2031] = {.lex_state = 247}, + [2032] = {.lex_state = 247}, + [2033] = {.lex_state = 247}, + [2034] = {.lex_state = 247}, + [2035] = {.lex_state = 247}, + [2036] = {.lex_state = 247}, + [2037] = {.lex_state = 25}, + [2038] = {.lex_state = 247}, + [2039] = {.lex_state = 247}, + [2040] = {.lex_state = 247}, + [2041] = {.lex_state = 247}, + [2042] = {.lex_state = 247}, + [2043] = {.lex_state = 247}, + [2044] = {.lex_state = 25}, + [2045] = {.lex_state = 25}, + [2046] = {.lex_state = 25}, + [2047] = {.lex_state = 25}, + [2048] = {.lex_state = 25}, + [2049] = {.lex_state = 25}, + [2050] = {.lex_state = 25}, + [2051] = {.lex_state = 25}, + [2052] = {.lex_state = 25}, + [2053] = {.lex_state = 25}, + [2054] = {.lex_state = 25}, + [2055] = {.lex_state = 25}, + [2056] = {.lex_state = 25}, + [2057] = {.lex_state = 25}, + [2058] = {.lex_state = 25}, + [2059] = {.lex_state = 25}, + [2060] = {.lex_state = 25}, + [2061] = {.lex_state = 25}, + [2062] = {.lex_state = 25}, + [2063] = {.lex_state = 25}, + [2064] = {.lex_state = 25}, + [2065] = {.lex_state = 25}, + [2066] = {.lex_state = 25}, + [2067] = {.lex_state = 25}, + [2068] = {.lex_state = 25}, + [2069] = {.lex_state = 25}, + [2070] = {.lex_state = 25}, + [2071] = {.lex_state = 25}, + [2072] = {.lex_state = 25}, + [2073] = {.lex_state = 25}, + [2074] = {.lex_state = 25}, + [2075] = {.lex_state = 25}, + [2076] = {.lex_state = 25}, + [2077] = {.lex_state = 25}, + [2078] = {.lex_state = 25}, + [2079] = {.lex_state = 25}, + [2080] = {.lex_state = 25}, + [2081] = {.lex_state = 25}, + [2082] = {.lex_state = 25}, + [2083] = {.lex_state = 25}, + [2084] = {.lex_state = 25}, + [2085] = {.lex_state = 25}, + [2086] = {.lex_state = 25}, + [2087] = {.lex_state = 25}, + [2088] = {.lex_state = 25}, + [2089] = {.lex_state = 25}, + [2090] = {.lex_state = 25}, + [2091] = {.lex_state = 25}, + [2092] = {.lex_state = 25}, + [2093] = {.lex_state = 25}, + [2094] = {.lex_state = 25}, + [2095] = {.lex_state = 25}, + [2096] = {.lex_state = 25}, + [2097] = {.lex_state = 25}, + [2098] = {.lex_state = 25}, + [2099] = {.lex_state = 25}, + [2100] = {.lex_state = 25}, + [2101] = {.lex_state = 25}, + [2102] = {.lex_state = 25}, + [2103] = {.lex_state = 25}, + [2104] = {.lex_state = 25}, + [2105] = {.lex_state = 25}, + [2106] = {.lex_state = 25}, + [2107] = {.lex_state = 25}, + [2108] = {.lex_state = 25}, + [2109] = {.lex_state = 25}, + [2110] = {.lex_state = 25}, + [2111] = {.lex_state = 25}, + [2112] = {.lex_state = 25}, + [2113] = {.lex_state = 25}, + [2114] = {.lex_state = 25}, + [2115] = {.lex_state = 25}, + [2116] = {.lex_state = 25}, + [2117] = {.lex_state = 25}, + [2118] = {.lex_state = 25}, + [2119] = {.lex_state = 25}, + [2120] = {.lex_state = 25}, + [2121] = {.lex_state = 25}, + [2122] = {.lex_state = 25}, + [2123] = {.lex_state = 25}, + [2124] = {.lex_state = 25}, + [2125] = {.lex_state = 25}, + [2126] = {.lex_state = 25}, + [2127] = {.lex_state = 25}, + [2128] = {.lex_state = 25}, + [2129] = {.lex_state = 25}, + [2130] = {.lex_state = 25}, + [2131] = {.lex_state = 25}, + [2132] = {.lex_state = 25}, + [2133] = {.lex_state = 25}, + [2134] = {.lex_state = 25}, + [2135] = {.lex_state = 25}, + [2136] = {.lex_state = 25}, + [2137] = {.lex_state = 25}, + [2138] = {.lex_state = 25}, + [2139] = {.lex_state = 25}, + [2140] = {.lex_state = 25}, + [2141] = {.lex_state = 25}, + [2142] = {.lex_state = 25}, + [2143] = {.lex_state = 25}, + [2144] = {.lex_state = 25}, + [2145] = {.lex_state = 25}, + [2146] = {.lex_state = 25}, + [2147] = {.lex_state = 25}, + [2148] = {.lex_state = 25}, + [2149] = {.lex_state = 25}, + [2150] = {.lex_state = 25}, + [2151] = {.lex_state = 25}, + [2152] = {.lex_state = 25}, + [2153] = {.lex_state = 25}, + [2154] = {.lex_state = 25}, + [2155] = {.lex_state = 25}, + [2156] = {.lex_state = 25}, + [2157] = {.lex_state = 25}, + [2158] = {.lex_state = 25}, + [2159] = {.lex_state = 25}, + [2160] = {.lex_state = 25}, + [2161] = {.lex_state = 25}, + [2162] = {.lex_state = 25}, + [2163] = {.lex_state = 25}, + [2164] = {.lex_state = 25}, + [2165] = {.lex_state = 25}, + [2166] = {.lex_state = 25}, + [2167] = {.lex_state = 25}, + [2168] = {.lex_state = 25}, + [2169] = {.lex_state = 25}, + [2170] = {.lex_state = 25}, + [2171] = {.lex_state = 25}, + [2172] = {.lex_state = 25}, + [2173] = {.lex_state = 25}, + [2174] = {.lex_state = 25}, + [2175] = {.lex_state = 25}, + [2176] = {.lex_state = 25}, + [2177] = {.lex_state = 25}, + [2178] = {.lex_state = 25}, + [2179] = {.lex_state = 25}, + [2180] = {.lex_state = 25}, + [2181] = {.lex_state = 25}, + [2182] = {.lex_state = 25}, + [2183] = {.lex_state = 25}, + [2184] = {.lex_state = 25}, + [2185] = {.lex_state = 25}, + [2186] = {.lex_state = 25}, + [2187] = {.lex_state = 25}, + [2188] = {.lex_state = 25}, + [2189] = {.lex_state = 25}, + [2190] = {.lex_state = 25}, + [2191] = {.lex_state = 25}, + [2192] = {.lex_state = 25}, + [2193] = {.lex_state = 25}, + [2194] = {.lex_state = 25}, + [2195] = {.lex_state = 25}, + [2196] = {.lex_state = 25}, + [2197] = {.lex_state = 25}, + [2198] = {.lex_state = 25}, + [2199] = {.lex_state = 25}, + [2200] = {.lex_state = 25}, + [2201] = {.lex_state = 25}, + [2202] = {.lex_state = 25}, + [2203] = {.lex_state = 25}, + [2204] = {.lex_state = 25}, + [2205] = {.lex_state = 25}, + [2206] = {.lex_state = 25}, + [2207] = {.lex_state = 25}, + [2208] = {.lex_state = 25}, + [2209] = {.lex_state = 25}, + [2210] = {.lex_state = 25}, + [2211] = {.lex_state = 25}, + [2212] = {.lex_state = 25}, + [2213] = {.lex_state = 25}, + [2214] = {.lex_state = 25}, + [2215] = {.lex_state = 25}, + [2216] = {.lex_state = 25}, + [2217] = {.lex_state = 25}, + [2218] = {.lex_state = 25}, + [2219] = {.lex_state = 25}, + [2220] = {.lex_state = 25}, + [2221] = {.lex_state = 25}, + [2222] = {.lex_state = 25}, + [2223] = {.lex_state = 25}, + [2224] = {.lex_state = 25}, + [2225] = {.lex_state = 25}, + [2226] = {.lex_state = 25}, + [2227] = {.lex_state = 25}, + [2228] = {.lex_state = 25}, + [2229] = {.lex_state = 25}, + [2230] = {.lex_state = 25}, + [2231] = {.lex_state = 25}, + [2232] = {.lex_state = 25}, + [2233] = {.lex_state = 25}, + [2234] = {.lex_state = 25}, + [2235] = {.lex_state = 25}, + [2236] = {.lex_state = 25}, + [2237] = {.lex_state = 25}, + [2238] = {.lex_state = 25}, + [2239] = {.lex_state = 25}, + [2240] = {.lex_state = 25}, + [2241] = {.lex_state = 25}, + [2242] = {.lex_state = 25}, + [2243] = {.lex_state = 25}, + [2244] = {.lex_state = 25}, + [2245] = {.lex_state = 25}, + [2246] = {.lex_state = 25}, + [2247] = {.lex_state = 25}, + [2248] = {.lex_state = 25}, + [2249] = {.lex_state = 25}, + [2250] = {.lex_state = 25}, + [2251] = {.lex_state = 25}, + [2252] = {.lex_state = 25}, [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}, + [2254] = {.lex_state = 25}, + [2255] = {.lex_state = 25}, + [2256] = {.lex_state = 25}, + [2257] = {.lex_state = 25}, + [2258] = {.lex_state = 25}, + [2259] = {.lex_state = 25}, + [2260] = {.lex_state = 25}, + [2261] = {.lex_state = 25}, + [2262] = {.lex_state = 25}, + [2263] = {.lex_state = 25}, + [2264] = {.lex_state = 25}, + [2265] = {.lex_state = 25}, + [2266] = {.lex_state = 25}, + [2267] = {.lex_state = 25}, + [2268] = {.lex_state = 25}, + [2269] = {.lex_state = 25}, + [2270] = {.lex_state = 25}, + [2271] = {.lex_state = 25}, + [2272] = {.lex_state = 25}, + [2273] = {.lex_state = 25}, + [2274] = {.lex_state = 25}, + [2275] = {.lex_state = 25}, + [2276] = {.lex_state = 25}, + [2277] = {.lex_state = 25}, + [2278] = {.lex_state = 25}, + [2279] = {.lex_state = 25}, + [2280] = {.lex_state = 25}, + [2281] = {.lex_state = 25}, + [2282] = {.lex_state = 25}, + [2283] = {.lex_state = 25}, + [2284] = {.lex_state = 25}, + [2285] = {.lex_state = 25}, + [2286] = {.lex_state = 25}, + [2287] = {.lex_state = 25}, + [2288] = {.lex_state = 25}, + [2289] = {.lex_state = 25}, + [2290] = {.lex_state = 25}, + [2291] = {.lex_state = 25}, + [2292] = {.lex_state = 25}, + [2293] = {.lex_state = 25}, + [2294] = {.lex_state = 25}, + [2295] = {.lex_state = 25}, + [2296] = {.lex_state = 25}, + [2297] = {.lex_state = 25}, + [2298] = {.lex_state = 25}, + [2299] = {.lex_state = 25}, + [2300] = {.lex_state = 25}, + [2301] = {.lex_state = 25}, + [2302] = {.lex_state = 25}, + [2303] = {.lex_state = 25}, + [2304] = {.lex_state = 25}, + [2305] = {.lex_state = 25}, + [2306] = {.lex_state = 25}, + [2307] = {.lex_state = 25}, + [2308] = {.lex_state = 25}, + [2309] = {.lex_state = 25}, + [2310] = {.lex_state = 25}, + [2311] = {.lex_state = 25}, + [2312] = {.lex_state = 25}, + [2313] = {.lex_state = 25}, + [2314] = {.lex_state = 25}, + [2315] = {.lex_state = 25}, + [2316] = {.lex_state = 25}, + [2317] = {.lex_state = 25}, + [2318] = {.lex_state = 25}, + [2319] = {.lex_state = 25}, + [2320] = {.lex_state = 25}, + [2321] = {.lex_state = 25}, + [2322] = {.lex_state = 25}, + [2323] = {.lex_state = 25}, + [2324] = {.lex_state = 25}, + [2325] = {.lex_state = 25}, + [2326] = {.lex_state = 25}, + [2327] = {.lex_state = 25}, + [2328] = {.lex_state = 25}, + [2329] = {.lex_state = 25}, + [2330] = {.lex_state = 25}, + [2331] = {.lex_state = 25}, + [2332] = {.lex_state = 25}, + [2333] = {.lex_state = 25}, + [2334] = {.lex_state = 25}, + [2335] = {.lex_state = 25}, + [2336] = {.lex_state = 25}, + [2337] = {.lex_state = 25}, + [2338] = {.lex_state = 25}, + [2339] = {.lex_state = 25}, + [2340] = {.lex_state = 25}, + [2341] = {.lex_state = 25}, + [2342] = {.lex_state = 25}, + [2343] = {.lex_state = 25}, + [2344] = {.lex_state = 25}, + [2345] = {.lex_state = 25}, + [2346] = {.lex_state = 25}, + [2347] = {.lex_state = 25}, + [2348] = {.lex_state = 25}, + [2349] = {.lex_state = 25}, + [2350] = {.lex_state = 25}, + [2351] = {.lex_state = 25}, + [2352] = {.lex_state = 25}, + [2353] = {.lex_state = 25}, + [2354] = {.lex_state = 25}, + [2355] = {.lex_state = 25}, + [2356] = {.lex_state = 25}, + [2357] = {.lex_state = 25}, + [2358] = {.lex_state = 25}, + [2359] = {.lex_state = 25}, + [2360] = {.lex_state = 25}, [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}, + [2362] = {.lex_state = 25}, + [2363] = {.lex_state = 25}, + [2364] = {.lex_state = 25}, + [2365] = {.lex_state = 25}, + [2366] = {.lex_state = 25}, + [2367] = {.lex_state = 25}, + [2368] = {.lex_state = 25}, + [2369] = {.lex_state = 25}, + [2370] = {.lex_state = 25}, + [2371] = {.lex_state = 25}, + [2372] = {.lex_state = 25}, + [2373] = {.lex_state = 25}, + [2374] = {.lex_state = 25}, + [2375] = {.lex_state = 25}, + [2376] = {.lex_state = 25}, + [2377] = {.lex_state = 25}, + [2378] = {.lex_state = 25}, + [2379] = {.lex_state = 25}, + [2380] = {.lex_state = 25}, + [2381] = {.lex_state = 25}, + [2382] = {.lex_state = 25}, + [2383] = {.lex_state = 25}, + [2384] = {.lex_state = 25}, + [2385] = {.lex_state = 25}, + [2386] = {.lex_state = 25}, + [2387] = {.lex_state = 25}, + [2388] = {.lex_state = 25}, + [2389] = {.lex_state = 25}, + [2390] = {.lex_state = 25}, + [2391] = {.lex_state = 25}, + [2392] = {.lex_state = 25}, + [2393] = {.lex_state = 25}, + [2394] = {.lex_state = 25}, + [2395] = {.lex_state = 25}, + [2396] = {.lex_state = 25}, + [2397] = {.lex_state = 25}, + [2398] = {.lex_state = 25}, + [2399] = {.lex_state = 25}, + [2400] = {.lex_state = 25}, + [2401] = {.lex_state = 25}, + [2402] = {.lex_state = 25}, + [2403] = {.lex_state = 25}, + [2404] = {.lex_state = 25}, + [2405] = {.lex_state = 25}, + [2406] = {.lex_state = 25}, + [2407] = {.lex_state = 25}, + [2408] = {.lex_state = 25}, + [2409] = {.lex_state = 25}, + [2410] = {.lex_state = 25}, + [2411] = {.lex_state = 25}, + [2412] = {.lex_state = 25}, + [2413] = {.lex_state = 25}, + [2414] = {.lex_state = 25}, + [2415] = {.lex_state = 25}, + [2416] = {.lex_state = 25}, + [2417] = {.lex_state = 25}, + [2418] = {.lex_state = 25}, + [2419] = {.lex_state = 25}, + [2420] = {.lex_state = 25}, + [2421] = {.lex_state = 25}, + [2422] = {.lex_state = 25}, + [2423] = {.lex_state = 25}, + [2424] = {.lex_state = 25}, + [2425] = {.lex_state = 25}, + [2426] = {.lex_state = 25}, + [2427] = {.lex_state = 25}, + [2428] = {.lex_state = 25}, + [2429] = {.lex_state = 25}, + [2430] = {.lex_state = 25}, + [2431] = {.lex_state = 25}, + [2432] = {.lex_state = 25}, + [2433] = {.lex_state = 25}, + [2434] = {.lex_state = 25}, + [2435] = {.lex_state = 25}, + [2436] = {.lex_state = 25}, + [2437] = {.lex_state = 25}, + [2438] = {.lex_state = 25}, + [2439] = {.lex_state = 25}, + [2440] = {.lex_state = 25}, + [2441] = {.lex_state = 25}, + [2442] = {.lex_state = 25}, + [2443] = {.lex_state = 25}, + [2444] = {.lex_state = 25}, + [2445] = {.lex_state = 25}, + [2446] = {.lex_state = 25}, + [2447] = {.lex_state = 25}, + [2448] = {.lex_state = 25}, + [2449] = {.lex_state = 25}, + [2450] = {.lex_state = 25}, + [2451] = {.lex_state = 25}, + [2452] = {.lex_state = 25}, + [2453] = {.lex_state = 25}, + [2454] = {.lex_state = 25}, + [2455] = {.lex_state = 25}, + [2456] = {.lex_state = 25}, + [2457] = {.lex_state = 25}, + [2458] = {.lex_state = 25}, + [2459] = {.lex_state = 25}, + [2460] = {.lex_state = 25}, + [2461] = {.lex_state = 25}, + [2462] = {.lex_state = 25}, + [2463] = {.lex_state = 25}, + [2464] = {.lex_state = 25}, + [2465] = {.lex_state = 25}, + [2466] = {.lex_state = 25}, + [2467] = {.lex_state = 25}, + [2468] = {.lex_state = 25}, + [2469] = {.lex_state = 25}, + [2470] = {.lex_state = 25}, + [2471] = {.lex_state = 25}, + [2472] = {.lex_state = 25}, + [2473] = {.lex_state = 25}, + [2474] = {.lex_state = 25}, + [2475] = {.lex_state = 25}, + [2476] = {.lex_state = 25}, + [2477] = {.lex_state = 25}, + [2478] = {.lex_state = 25}, + [2479] = {.lex_state = 25}, + [2480] = {.lex_state = 25}, + [2481] = {.lex_state = 25}, + [2482] = {.lex_state = 25}, + [2483] = {.lex_state = 25}, + [2484] = {.lex_state = 25}, + [2485] = {.lex_state = 25}, + [2486] = {.lex_state = 25}, + [2487] = {.lex_state = 25}, + [2488] = {.lex_state = 25}, + [2489] = {.lex_state = 25}, + [2490] = {.lex_state = 25}, + [2491] = {.lex_state = 25}, + [2492] = {.lex_state = 25}, + [2493] = {.lex_state = 25}, + [2494] = {.lex_state = 25}, + [2495] = {.lex_state = 25}, + [2496] = {.lex_state = 25}, + [2497] = {.lex_state = 25}, + [2498] = {.lex_state = 25}, + [2499] = {.lex_state = 25}, + [2500] = {.lex_state = 25}, + [2501] = {.lex_state = 25}, + [2502] = {.lex_state = 25}, + [2503] = {.lex_state = 25}, + [2504] = {.lex_state = 25}, + [2505] = {.lex_state = 25}, + [2506] = {.lex_state = 25}, + [2507] = {.lex_state = 25}, + [2508] = {.lex_state = 25}, + [2509] = {.lex_state = 25}, + [2510] = {.lex_state = 25}, + [2511] = {.lex_state = 25}, + [2512] = {.lex_state = 25}, + [2513] = {.lex_state = 25}, + [2514] = {.lex_state = 25}, + [2515] = {.lex_state = 25}, + [2516] = {.lex_state = 25}, + [2517] = {.lex_state = 25}, + [2518] = {.lex_state = 25}, + [2519] = {.lex_state = 25}, + [2520] = {.lex_state = 25}, + [2521] = {.lex_state = 25}, + [2522] = {.lex_state = 25}, + [2523] = {.lex_state = 25}, + [2524] = {.lex_state = 25}, + [2525] = {.lex_state = 25}, + [2526] = {.lex_state = 25}, + [2527] = {.lex_state = 25}, + [2528] = {.lex_state = 25}, + [2529] = {.lex_state = 25}, + [2530] = {.lex_state = 25}, + [2531] = {.lex_state = 25}, + [2532] = {.lex_state = 25}, + [2533] = {.lex_state = 25}, + [2534] = {.lex_state = 25}, + [2535] = {.lex_state = 25}, + [2536] = {.lex_state = 25}, + [2537] = {.lex_state = 25}, + [2538] = {.lex_state = 25}, + [2539] = {.lex_state = 25}, + [2540] = {.lex_state = 25}, + [2541] = {.lex_state = 25}, + [2542] = {.lex_state = 25}, + [2543] = {.lex_state = 25}, + [2544] = {.lex_state = 25}, + [2545] = {.lex_state = 25}, + [2546] = {.lex_state = 25}, + [2547] = {.lex_state = 25}, + [2548] = {.lex_state = 25}, + [2549] = {.lex_state = 25}, + [2550] = {.lex_state = 25}, + [2551] = {.lex_state = 25}, + [2552] = {.lex_state = 25}, + [2553] = {.lex_state = 25}, + [2554] = {.lex_state = 25}, + [2555] = {.lex_state = 25}, + [2556] = {.lex_state = 25}, + [2557] = {.lex_state = 25}, + [2558] = {.lex_state = 25}, + [2559] = {.lex_state = 25}, + [2560] = {.lex_state = 25}, + [2561] = {.lex_state = 25}, + [2562] = {.lex_state = 25}, + [2563] = {.lex_state = 25}, + [2564] = {.lex_state = 25}, + [2565] = {.lex_state = 25}, + [2566] = {.lex_state = 25}, + [2567] = {.lex_state = 25}, + [2568] = {.lex_state = 25}, + [2569] = {.lex_state = 25}, + [2570] = {.lex_state = 25}, + [2571] = {.lex_state = 25}, + [2572] = {.lex_state = 25}, + [2573] = {.lex_state = 25}, + [2574] = {.lex_state = 25}, + [2575] = {.lex_state = 25}, + [2576] = {.lex_state = 25}, + [2577] = {.lex_state = 25}, + [2578] = {.lex_state = 25}, + [2579] = {.lex_state = 25}, + [2580] = {.lex_state = 25}, + [2581] = {.lex_state = 25}, + [2582] = {.lex_state = 25}, + [2583] = {.lex_state = 25}, + [2584] = {.lex_state = 25}, + [2585] = {.lex_state = 25}, + [2586] = {.lex_state = 25}, + [2587] = {.lex_state = 25}, + [2588] = {.lex_state = 25}, + [2589] = {.lex_state = 25}, + [2590] = {.lex_state = 25}, + [2591] = {.lex_state = 25}, + [2592] = {.lex_state = 25}, + [2593] = {.lex_state = 25}, + [2594] = {.lex_state = 25}, + [2595] = {.lex_state = 25}, + [2596] = {.lex_state = 25}, + [2597] = {.lex_state = 25}, + [2598] = {.lex_state = 25}, + [2599] = {.lex_state = 25}, + [2600] = {.lex_state = 25}, + [2601] = {.lex_state = 25}, + [2602] = {.lex_state = 25}, + [2603] = {.lex_state = 25}, + [2604] = {.lex_state = 25}, + [2605] = {.lex_state = 25}, + [2606] = {.lex_state = 25}, + [2607] = {.lex_state = 25}, + [2608] = {.lex_state = 25}, + [2609] = {.lex_state = 25}, + [2610] = {.lex_state = 25}, + [2611] = {.lex_state = 25}, + [2612] = {.lex_state = 25}, + [2613] = {.lex_state = 25}, + [2614] = {.lex_state = 25}, + [2615] = {.lex_state = 25}, + [2616] = {.lex_state = 25}, + [2617] = {.lex_state = 25}, + [2618] = {.lex_state = 25}, + [2619] = {.lex_state = 25}, + [2620] = {.lex_state = 25}, + [2621] = {.lex_state = 25}, + [2622] = {.lex_state = 25}, + [2623] = {.lex_state = 25}, + [2624] = {.lex_state = 25}, + [2625] = {.lex_state = 25}, + [2626] = {.lex_state = 25}, + [2627] = {.lex_state = 25}, + [2628] = {.lex_state = 25}, + [2629] = {.lex_state = 25}, + [2630] = {.lex_state = 25}, + [2631] = {.lex_state = 25}, + [2632] = {.lex_state = 25}, + [2633] = {.lex_state = 25}, + [2634] = {.lex_state = 25}, + [2635] = {.lex_state = 25}, + [2636] = {.lex_state = 25}, + [2637] = {.lex_state = 25}, + [2638] = {.lex_state = 25}, + [2639] = {.lex_state = 25}, + [2640] = {.lex_state = 25}, + [2641] = {.lex_state = 25}, + [2642] = {.lex_state = 25}, + [2643] = {.lex_state = 25}, + [2644] = {.lex_state = 25}, + [2645] = {.lex_state = 25}, + [2646] = {.lex_state = 25}, + [2647] = {.lex_state = 25}, + [2648] = {.lex_state = 25}, + [2649] = {.lex_state = 25}, + [2650] = {.lex_state = 25}, + [2651] = {.lex_state = 25}, + [2652] = {.lex_state = 25}, + [2653] = {.lex_state = 25}, + [2654] = {.lex_state = 25}, + [2655] = {.lex_state = 25}, + [2656] = {.lex_state = 25}, + [2657] = {.lex_state = 25}, + [2658] = {.lex_state = 25}, + [2659] = {.lex_state = 25}, + [2660] = {.lex_state = 25}, + [2661] = {.lex_state = 25}, + [2662] = {.lex_state = 25}, + [2663] = {.lex_state = 25}, + [2664] = {.lex_state = 25}, + [2665] = {.lex_state = 25}, + [2666] = {.lex_state = 25}, + [2667] = {.lex_state = 1}, + [2668] = {.lex_state = 25}, + [2669] = {.lex_state = 25}, + [2670] = {.lex_state = 25}, + [2671] = {.lex_state = 25}, + [2672] = {.lex_state = 25}, + [2673] = {.lex_state = 25}, + [2674] = {.lex_state = 25}, + [2675] = {.lex_state = 25}, + [2676] = {.lex_state = 25}, + [2677] = {.lex_state = 25}, + [2678] = {.lex_state = 25}, + [2679] = {.lex_state = 25}, + [2680] = {.lex_state = 28}, + [2681] = {.lex_state = 25}, + [2682] = {.lex_state = 28}, + [2683] = {.lex_state = 28}, + [2684] = {.lex_state = 25}, + [2685] = {.lex_state = 28}, + [2686] = {.lex_state = 25}, + [2687] = {.lex_state = 28}, + [2688] = {.lex_state = 25}, + [2689] = {.lex_state = 28}, + [2690] = {.lex_state = 25}, + [2691] = {.lex_state = 25}, + [2692] = {.lex_state = 25}, + [2693] = {.lex_state = 25}, + [2694] = {.lex_state = 25}, + [2695] = {.lex_state = 28}, + [2696] = {.lex_state = 1}, + [2697] = {.lex_state = 28}, + [2698] = {.lex_state = 28}, + [2699] = {.lex_state = 25}, + [2700] = {.lex_state = 25}, + [2701] = {.lex_state = 25}, + [2702] = {.lex_state = 25}, + [2703] = {.lex_state = 25}, + [2704] = {.lex_state = 1}, + [2705] = {.lex_state = 25}, + [2706] = {.lex_state = 25}, + [2707] = {.lex_state = 25}, + [2708] = {.lex_state = 25}, + [2709] = {.lex_state = 25}, + [2710] = {.lex_state = 25}, + [2711] = {.lex_state = 25}, + [2712] = {.lex_state = 25}, + [2713] = {.lex_state = 28}, + [2714] = {.lex_state = 25}, + [2715] = {.lex_state = 25}, + [2716] = {.lex_state = 25}, + [2717] = {.lex_state = 28}, + [2718] = {.lex_state = 25}, + [2719] = {.lex_state = 25}, + [2720] = {.lex_state = 25}, + [2721] = {.lex_state = 25}, + [2722] = {.lex_state = 28}, + [2723] = {.lex_state = 25}, + [2724] = {.lex_state = 28}, + [2725] = {.lex_state = 25}, + [2726] = {.lex_state = 25}, + [2727] = {.lex_state = 25}, + [2728] = {.lex_state = 25}, + [2729] = {.lex_state = 25}, + [2730] = {.lex_state = 25}, + [2731] = {.lex_state = 25}, + [2732] = {.lex_state = 25}, + [2733] = {.lex_state = 28}, + [2734] = {.lex_state = 28}, + [2735] = {.lex_state = 25}, + [2736] = {.lex_state = 25}, + [2737] = {.lex_state = 25}, + [2738] = {.lex_state = 25}, + [2739] = {.lex_state = 25}, + [2740] = {.lex_state = 25}, + [2741] = {.lex_state = 25}, + [2742] = {.lex_state = 28}, + [2743] = {.lex_state = 28}, + [2744] = {.lex_state = 28}, + [2745] = {.lex_state = 25}, + [2746] = {.lex_state = 28}, + [2747] = {.lex_state = 28}, + [2748] = {.lex_state = 1}, + [2749] = {.lex_state = 1}, + [2750] = {.lex_state = 20}, + [2751] = {.lex_state = 20}, + [2752] = {.lex_state = 20}, + [2753] = {.lex_state = 20}, + [2754] = {.lex_state = 20}, + [2755] = {.lex_state = 20}, + [2756] = {.lex_state = 20}, + [2757] = {.lex_state = 20}, + [2758] = {.lex_state = 20}, + [2759] = {.lex_state = 20}, + [2760] = {.lex_state = 20}, + [2761] = {.lex_state = 20}, + [2762] = {.lex_state = 28}, + [2763] = {.lex_state = 28}, + [2764] = {.lex_state = 28}, + [2765] = {.lex_state = 28}, + [2766] = {.lex_state = 28}, + [2767] = {.lex_state = 28}, + [2768] = {.lex_state = 28}, + [2769] = {.lex_state = 28}, + [2770] = {.lex_state = 28}, + [2771] = {.lex_state = 28}, + [2772] = {.lex_state = 28}, + [2773] = {.lex_state = 28}, + [2774] = {.lex_state = 28}, + [2775] = {.lex_state = 28}, + [2776] = {.lex_state = 28}, + [2777] = {.lex_state = 28}, + [2778] = {.lex_state = 28}, + [2779] = {.lex_state = 28}, + [2780] = {.lex_state = 28}, + [2781] = {.lex_state = 28}, + [2782] = {.lex_state = 28}, + [2783] = {.lex_state = 28}, + [2784] = {.lex_state = 28}, + [2785] = {.lex_state = 28}, + [2786] = {.lex_state = 28}, + [2787] = {.lex_state = 28}, + [2788] = {.lex_state = 28}, + [2789] = {.lex_state = 28}, + [2790] = {.lex_state = 28}, + [2791] = {.lex_state = 28}, + [2792] = {.lex_state = 28}, + [2793] = {.lex_state = 28}, + [2794] = {.lex_state = 28}, + [2795] = {.lex_state = 28}, + [2796] = {.lex_state = 28}, + [2797] = {.lex_state = 28}, + [2798] = {.lex_state = 28}, + [2799] = {.lex_state = 18}, + [2800] = {.lex_state = 18}, + [2801] = {.lex_state = 18}, + [2802] = {.lex_state = 18}, + [2803] = {.lex_state = 18}, + [2804] = {.lex_state = 29}, + [2805] = {.lex_state = 18}, + [2806] = {.lex_state = 18}, + [2807] = {.lex_state = 18}, + [2808] = {.lex_state = 29}, + [2809] = {.lex_state = 18}, + [2810] = {.lex_state = 29}, + [2811] = {.lex_state = 18}, + [2812] = {.lex_state = 29}, + [2813] = {.lex_state = 29}, + [2814] = {.lex_state = 18}, + [2815] = {.lex_state = 29}, + [2816] = {.lex_state = 18}, + [2817] = {.lex_state = 18}, + [2818] = {.lex_state = 18}, + [2819] = {.lex_state = 18}, + [2820] = {.lex_state = 18}, + [2821] = {.lex_state = 29}, + [2822] = {.lex_state = 18}, + [2823] = {.lex_state = 18}, + [2824] = {.lex_state = 18}, + [2825] = {.lex_state = 18}, + [2826] = {.lex_state = 18}, + [2827] = {.lex_state = 29}, + [2828] = {.lex_state = 29}, + [2829] = {.lex_state = 18}, + [2830] = {.lex_state = 29}, + [2831] = {.lex_state = 18}, + [2832] = {.lex_state = 29}, + [2833] = {.lex_state = 29}, + [2834] = {.lex_state = 29}, + [2835] = {.lex_state = 18}, + [2836] = {.lex_state = 18}, + [2837] = {.lex_state = 18}, + [2838] = {.lex_state = 18}, + [2839] = {.lex_state = 29}, + [2840] = {.lex_state = 18}, + [2841] = {.lex_state = 29}, + [2842] = {.lex_state = 18}, + [2843] = {.lex_state = 18}, + [2844] = {.lex_state = 18}, + [2845] = {.lex_state = 18}, + [2846] = {.lex_state = 22}, + [2847] = {.lex_state = 22}, + [2848] = {.lex_state = 25}, + [2849] = {.lex_state = 22}, + [2850] = {.lex_state = 29}, + [2851] = {.lex_state = 22}, + [2852] = {.lex_state = 25}, + [2853] = {.lex_state = 28}, + [2854] = {.lex_state = 22}, + [2855] = {.lex_state = 22}, + [2856] = {.lex_state = 29}, + [2857] = {.lex_state = 22}, + [2858] = {.lex_state = 28}, + [2859] = {.lex_state = 28}, + [2860] = {.lex_state = 22}, + [2861] = {.lex_state = 22}, + [2862] = {.lex_state = 22}, + [2863] = {.lex_state = 22}, + [2864] = {.lex_state = 22}, [2865] = {.lex_state = 22}, - [2866] = {.lex_state = 288}, - [2867] = {.lex_state = 288}, - [2868] = {.lex_state = 288}, - [2869] = {.lex_state = 288}, + [2866] = {.lex_state = 22}, + [2867] = {.lex_state = 22}, + [2868] = {.lex_state = 28}, + [2869] = {.lex_state = 28}, [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 = 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 = 20}, - [3395] = {.lex_state = 20}, - [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}, + [2871] = {.lex_state = 22}, + [2872] = {.lex_state = 22}, + [2873] = {.lex_state = 28}, + [2874] = {.lex_state = 28}, + [2875] = {.lex_state = 28}, + [2876] = {.lex_state = 29}, + [2877] = {.lex_state = 28}, + [2878] = {.lex_state = 28}, + [2879] = {.lex_state = 28}, + [2880] = {.lex_state = 28}, + [2881] = {.lex_state = 28}, + [2882] = {.lex_state = 28}, + [2883] = {.lex_state = 28}, + [2884] = {.lex_state = 28}, + [2885] = {.lex_state = 28}, + [2886] = {.lex_state = 27}, + [2887] = {.lex_state = 28}, + [2888] = {.lex_state = 22}, + [2889] = {.lex_state = 22}, + [2890] = {.lex_state = 22}, + [2891] = {.lex_state = 22}, + [2892] = {.lex_state = 22}, + [2893] = {.lex_state = 22}, + [2894] = {.lex_state = 22}, + [2895] = {.lex_state = 22}, + [2896] = {.lex_state = 22}, + [2897] = {.lex_state = 22}, + [2898] = {.lex_state = 22}, + [2899] = {.lex_state = 22}, + [2900] = {.lex_state = 19}, + [2901] = {.lex_state = 29}, + [2902] = {.lex_state = 20}, + [2903] = {.lex_state = 247}, + [2904] = {.lex_state = 20}, + [2905] = {.lex_state = 20}, + [2906] = {.lex_state = 20}, + [2907] = {.lex_state = 20}, + [2908] = {.lex_state = 20}, + [2909] = {.lex_state = 20}, + [2910] = {.lex_state = 20}, + [2911] = {.lex_state = 20}, + [2912] = {.lex_state = 20}, + [2913] = {.lex_state = 20}, + [2914] = {.lex_state = 20}, + [2915] = {.lex_state = 20}, + [2916] = {.lex_state = 20}, + [2917] = {.lex_state = 20}, + [2918] = {.lex_state = 20}, + [2919] = {.lex_state = 20}, + [2920] = {.lex_state = 20}, + [2921] = {.lex_state = 20}, + [2922] = {.lex_state = 20}, + [2923] = {.lex_state = 20}, + [2924] = {.lex_state = 1}, + [2925] = {.lex_state = 20}, + [2926] = {.lex_state = 20}, + [2927] = {.lex_state = 20}, + [2928] = {.lex_state = 20}, + [2929] = {.lex_state = 20}, + [2930] = {.lex_state = 20}, + [2931] = {.lex_state = 20}, + [2932] = {.lex_state = 20}, + [2933] = {.lex_state = 20}, + [2934] = {.lex_state = 20}, + [2935] = {.lex_state = 20}, + [2936] = {.lex_state = 20}, + [2937] = {.lex_state = 20}, + [2938] = {.lex_state = 20}, + [2939] = {.lex_state = 20}, + [2940] = {.lex_state = 20}, + [2941] = {.lex_state = 20}, + [2942] = {.lex_state = 20}, + [2943] = {.lex_state = 20}, + [2944] = {.lex_state = 20}, + [2945] = {.lex_state = 20}, + [2946] = {.lex_state = 20}, + [2947] = {.lex_state = 20}, + [2948] = {.lex_state = 20}, + [2949] = {.lex_state = 20}, + [2950] = {.lex_state = 20}, + [2951] = {.lex_state = 20}, + [2952] = {.lex_state = 20}, + [2953] = {.lex_state = 20}, + [2954] = {.lex_state = 20}, + [2955] = {.lex_state = 20}, + [2956] = {.lex_state = 20}, + [2957] = {.lex_state = 20}, + [2958] = {.lex_state = 20}, + [2959] = {.lex_state = 20}, + [2960] = {.lex_state = 20}, + [2961] = {.lex_state = 20}, + [2962] = {.lex_state = 20}, + [2963] = {.lex_state = 20}, + [2964] = {.lex_state = 20}, + [2965] = {.lex_state = 20}, + [2966] = {.lex_state = 20}, + [2967] = {.lex_state = 20}, + [2968] = {.lex_state = 247}, + [2969] = {.lex_state = 247}, + [2970] = {.lex_state = 247}, + [2971] = {.lex_state = 20}, + [2972] = {.lex_state = 247}, + [2973] = {.lex_state = 20}, + [2974] = {.lex_state = 20}, + [2975] = {.lex_state = 20}, + [2976] = {.lex_state = 1}, + [2977] = {.lex_state = 20}, + [2978] = {.lex_state = 20}, + [2979] = {.lex_state = 20}, + [2980] = {.lex_state = 20}, + [2981] = {.lex_state = 20}, + [2982] = {.lex_state = 1}, + [2983] = {.lex_state = 20}, + [2984] = {.lex_state = 20}, + [2985] = {.lex_state = 20}, + [2986] = {.lex_state = 20}, + [2987] = {.lex_state = 20}, + [2988] = {.lex_state = 20}, + [2989] = {.lex_state = 20}, + [2990] = {.lex_state = 20}, + [2991] = {.lex_state = 20}, + [2992] = {.lex_state = 20}, + [2993] = {.lex_state = 20}, + [2994] = {.lex_state = 20}, + [2995] = {.lex_state = 20}, + [2996] = {.lex_state = 20}, + [2997] = {.lex_state = 20}, + [2998] = {.lex_state = 20}, + [2999] = {.lex_state = 27}, + [3000] = {.lex_state = 247}, + [3001] = {.lex_state = 25}, + [3002] = {.lex_state = 247}, + [3003] = {.lex_state = 247}, + [3004] = {.lex_state = 247}, + [3005] = {.lex_state = 25}, + [3006] = {.lex_state = 247}, + [3007] = {.lex_state = 247}, + [3008] = {.lex_state = 247}, + [3009] = {.lex_state = 25}, + [3010] = {.lex_state = 25}, + [3011] = {.lex_state = 25}, + [3012] = {.lex_state = 247}, + [3013] = {.lex_state = 25}, + [3014] = {.lex_state = 25}, + [3015] = {.lex_state = 25}, + [3016] = {.lex_state = 247}, + [3017] = {.lex_state = 247}, + [3018] = {.lex_state = 247}, + [3019] = {.lex_state = 247}, + [3020] = {.lex_state = 247}, + [3021] = {.lex_state = 247}, + [3022] = {.lex_state = 247}, + [3023] = {.lex_state = 25}, + [3024] = {.lex_state = 247}, + [3025] = {.lex_state = 247}, + [3026] = {.lex_state = 20}, + [3027] = {.lex_state = 247}, + [3028] = {.lex_state = 247}, + [3029] = {.lex_state = 247}, + [3030] = {.lex_state = 25}, + [3031] = {.lex_state = 247}, + [3032] = {.lex_state = 247}, + [3033] = {.lex_state = 247}, + [3034] = {.lex_state = 25}, + [3035] = {.lex_state = 247}, + [3036] = {.lex_state = 247}, + [3037] = {.lex_state = 247}, + [3038] = {.lex_state = 247}, + [3039] = {.lex_state = 20}, + [3040] = {.lex_state = 247}, + [3041] = {.lex_state = 247}, + [3042] = {.lex_state = 20}, + [3043] = {.lex_state = 247}, + [3044] = {.lex_state = 247}, + [3045] = {.lex_state = 247}, + [3046] = {.lex_state = 247}, + [3047] = {.lex_state = 25}, + [3048] = {.lex_state = 25}, + [3049] = {.lex_state = 247}, + [3050] = {.lex_state = 247}, + [3051] = {.lex_state = 247}, + [3052] = {.lex_state = 247}, + [3053] = {.lex_state = 247}, + [3054] = {.lex_state = 20}, + [3055] = {.lex_state = 20}, + [3056] = {.lex_state = 20}, + [3057] = {.lex_state = 20}, + [3058] = {.lex_state = 20}, + [3059] = {.lex_state = 20}, + [3060] = {.lex_state = 247}, + [3061] = {.lex_state = 20}, + [3062] = {.lex_state = 20}, + [3063] = {.lex_state = 20}, + [3064] = {.lex_state = 20}, + [3065] = {.lex_state = 247}, + [3066] = {.lex_state = 247}, + [3067] = {.lex_state = 20}, + [3068] = {.lex_state = 20}, + [3069] = {.lex_state = 20}, + [3070] = {.lex_state = 20}, + [3071] = {.lex_state = 247}, + [3072] = {.lex_state = 247}, + [3073] = {.lex_state = 247}, + [3074] = {.lex_state = 20}, + [3075] = {.lex_state = 247}, + [3076] = {.lex_state = 20}, + [3077] = {.lex_state = 20}, + [3078] = {.lex_state = 20}, + [3079] = {.lex_state = 22}, + [3080] = {.lex_state = 247}, + [3081] = {.lex_state = 20}, + [3082] = {.lex_state = 20}, + [3083] = {.lex_state = 20}, + [3084] = {.lex_state = 20}, + [3085] = {.lex_state = 1}, + [3086] = {.lex_state = 20}, + [3087] = {.lex_state = 20}, + [3088] = {.lex_state = 20}, + [3089] = {.lex_state = 20}, + [3090] = {.lex_state = 247}, + [3091] = {.lex_state = 20}, + [3092] = {.lex_state = 20}, + [3093] = {.lex_state = 20}, + [3094] = {.lex_state = 25}, + [3095] = {.lex_state = 20}, + [3096] = {.lex_state = 20}, + [3097] = {.lex_state = 20}, + [3098] = {.lex_state = 20}, + [3099] = {.lex_state = 20}, + [3100] = {.lex_state = 20}, + [3101] = {.lex_state = 1}, + [3102] = {.lex_state = 247}, + [3103] = {.lex_state = 247}, + [3104] = {.lex_state = 247}, + [3105] = {.lex_state = 25}, + [3106] = {.lex_state = 247}, + [3107] = {.lex_state = 25}, + [3108] = {.lex_state = 25}, + [3109] = {.lex_state = 25}, + [3110] = {.lex_state = 247}, + [3111] = {.lex_state = 247}, + [3112] = {.lex_state = 247}, + [3113] = {.lex_state = 247}, + [3114] = {.lex_state = 247}, + [3115] = {.lex_state = 247}, + [3116] = {.lex_state = 247}, + [3117] = {.lex_state = 247}, + [3118] = {.lex_state = 25}, + [3119] = {.lex_state = 25}, + [3120] = {.lex_state = 25}, + [3121] = {.lex_state = 25}, + [3122] = {.lex_state = 25}, + [3123] = {.lex_state = 25}, + [3124] = {.lex_state = 25}, + [3125] = {.lex_state = 25}, + [3126] = {.lex_state = 25}, + [3127] = {.lex_state = 25}, + [3128] = {.lex_state = 25}, + [3129] = {.lex_state = 25}, + [3130] = {.lex_state = 25}, + [3131] = {.lex_state = 25}, + [3132] = {.lex_state = 25}, + [3133] = {.lex_state = 25}, + [3134] = {.lex_state = 25}, + [3135] = {.lex_state = 25}, + [3136] = {.lex_state = 25}, + [3137] = {.lex_state = 25}, + [3138] = {.lex_state = 25}, + [3139] = {.lex_state = 25}, + [3140] = {.lex_state = 25}, + [3141] = {.lex_state = 25}, + [3142] = {.lex_state = 25}, + [3143] = {.lex_state = 25}, + [3144] = {.lex_state = 25}, + [3145] = {.lex_state = 25}, + [3146] = {.lex_state = 25}, + [3147] = {.lex_state = 25}, + [3148] = {.lex_state = 25}, + [3149] = {.lex_state = 25}, + [3150] = {.lex_state = 25}, + [3151] = {.lex_state = 25}, + [3152] = {.lex_state = 25}, + [3153] = {.lex_state = 25}, + [3154] = {.lex_state = 25}, + [3155] = {.lex_state = 25}, + [3156] = {.lex_state = 25}, + [3157] = {.lex_state = 25}, + [3158] = {.lex_state = 25}, + [3159] = {.lex_state = 25}, + [3160] = {.lex_state = 25}, + [3161] = {.lex_state = 25}, + [3162] = {.lex_state = 25}, + [3163] = {.lex_state = 25}, + [3164] = {.lex_state = 25}, + [3165] = {.lex_state = 25}, + [3166] = {.lex_state = 25}, + [3167] = {.lex_state = 25}, + [3168] = {.lex_state = 25}, + [3169] = {.lex_state = 25}, + [3170] = {.lex_state = 25}, + [3171] = {.lex_state = 25}, + [3172] = {.lex_state = 25}, + [3173] = {.lex_state = 25}, + [3174] = {.lex_state = 25}, + [3175] = {.lex_state = 25}, + [3176] = {.lex_state = 25}, + [3177] = {.lex_state = 25}, + [3178] = {.lex_state = 25}, + [3179] = {.lex_state = 25}, + [3180] = {.lex_state = 25}, + [3181] = {.lex_state = 25}, + [3182] = {.lex_state = 25}, + [3183] = {.lex_state = 25}, + [3184] = {.lex_state = 25}, + [3185] = {.lex_state = 25}, + [3186] = {.lex_state = 25}, + [3187] = {.lex_state = 25}, + [3188] = {.lex_state = 25}, + [3189] = {.lex_state = 25}, + [3190] = {.lex_state = 25}, + [3191] = {.lex_state = 25}, + [3192] = {.lex_state = 25}, + [3193] = {.lex_state = 25}, + [3194] = {.lex_state = 25}, + [3195] = {.lex_state = 25}, + [3196] = {.lex_state = 25}, + [3197] = {.lex_state = 25}, + [3198] = {.lex_state = 25}, + [3199] = {.lex_state = 25}, + [3200] = {.lex_state = 25}, + [3201] = {.lex_state = 25}, + [3202] = {.lex_state = 25}, + [3203] = {.lex_state = 25}, + [3204] = {.lex_state = 25}, + [3205] = {.lex_state = 25}, + [3206] = {.lex_state = 25}, + [3207] = {.lex_state = 25}, + [3208] = {.lex_state = 25}, + [3209] = {.lex_state = 25}, + [3210] = {.lex_state = 25}, + [3211] = {.lex_state = 25}, + [3212] = {.lex_state = 25}, + [3213] = {.lex_state = 25}, + [3214] = {.lex_state = 25}, + [3215] = {.lex_state = 25}, + [3216] = {.lex_state = 25}, + [3217] = {.lex_state = 25}, + [3218] = {.lex_state = 25}, + [3219] = {.lex_state = 25}, + [3220] = {.lex_state = 25}, + [3221] = {.lex_state = 25}, + [3222] = {.lex_state = 25}, + [3223] = {.lex_state = 25}, + [3224] = {.lex_state = 25}, + [3225] = {.lex_state = 25}, + [3226] = {.lex_state = 25}, + [3227] = {.lex_state = 25}, + [3228] = {.lex_state = 25}, + [3229] = {.lex_state = 25}, + [3230] = {.lex_state = 25}, + [3231] = {.lex_state = 25}, + [3232] = {.lex_state = 25}, + [3233] = {.lex_state = 25}, + [3234] = {.lex_state = 25}, + [3235] = {.lex_state = 25}, + [3236] = {.lex_state = 25}, + [3237] = {.lex_state = 25}, + [3238] = {.lex_state = 25}, + [3239] = {.lex_state = 25}, + [3240] = {.lex_state = 25}, + [3241] = {.lex_state = 25}, + [3242] = {.lex_state = 25}, + [3243] = {.lex_state = 25}, + [3244] = {.lex_state = 25}, + [3245] = {.lex_state = 25}, + [3246] = {.lex_state = 25}, + [3247] = {.lex_state = 25}, + [3248] = {.lex_state = 25}, + [3249] = {.lex_state = 25}, + [3250] = {.lex_state = 25}, + [3251] = {.lex_state = 25}, + [3252] = {.lex_state = 25}, + [3253] = {.lex_state = 25}, + [3254] = {.lex_state = 25}, + [3255] = {.lex_state = 25}, + [3256] = {.lex_state = 25}, + [3257] = {.lex_state = 25}, + [3258] = {.lex_state = 25}, + [3259] = {.lex_state = 25}, + [3260] = {.lex_state = 25}, + [3261] = {.lex_state = 25}, + [3262] = {.lex_state = 25}, + [3263] = {.lex_state = 25}, + [3264] = {.lex_state = 25}, + [3265] = {.lex_state = 25}, + [3266] = {.lex_state = 25}, + [3267] = {.lex_state = 25}, + [3268] = {.lex_state = 25}, + [3269] = {.lex_state = 25}, + [3270] = {.lex_state = 25}, + [3271] = {.lex_state = 25}, + [3272] = {.lex_state = 25}, + [3273] = {.lex_state = 25}, + [3274] = {.lex_state = 25}, + [3275] = {.lex_state = 25}, + [3276] = {.lex_state = 25}, + [3277] = {.lex_state = 25}, + [3278] = {.lex_state = 25}, + [3279] = {.lex_state = 25}, + [3280] = {.lex_state = 25}, + [3281] = {.lex_state = 25}, + [3282] = {.lex_state = 25}, + [3283] = {.lex_state = 25}, + [3284] = {.lex_state = 25}, + [3285] = {.lex_state = 25}, + [3286] = {.lex_state = 25}, + [3287] = {.lex_state = 25}, + [3288] = {.lex_state = 25}, + [3289] = {.lex_state = 25}, + [3290] = {.lex_state = 25}, + [3291] = {.lex_state = 25}, + [3292] = {.lex_state = 25}, + [3293] = {.lex_state = 25}, + [3294] = {.lex_state = 25}, + [3295] = {.lex_state = 25}, + [3296] = {.lex_state = 25}, + [3297] = {.lex_state = 25}, + [3298] = {.lex_state = 25}, + [3299] = {.lex_state = 25}, + [3300] = {.lex_state = 25}, + [3301] = {.lex_state = 25}, + [3302] = {.lex_state = 25}, + [3303] = {.lex_state = 25}, + [3304] = {.lex_state = 25}, + [3305] = {.lex_state = 25}, + [3306] = {.lex_state = 25}, + [3307] = {.lex_state = 25}, + [3308] = {.lex_state = 25}, + [3309] = {.lex_state = 25}, + [3310] = {.lex_state = 25}, + [3311] = {.lex_state = 25}, + [3312] = {.lex_state = 25}, + [3313] = {.lex_state = 25}, + [3314] = {.lex_state = 25}, + [3315] = {.lex_state = 25}, + [3316] = {.lex_state = 25}, + [3317] = {.lex_state = 25}, + [3318] = {.lex_state = 25}, + [3319] = {.lex_state = 25}, + [3320] = {.lex_state = 25}, + [3321] = {.lex_state = 25}, + [3322] = {.lex_state = 25}, + [3323] = {.lex_state = 25}, + [3324] = {.lex_state = 25}, + [3325] = {.lex_state = 25}, + [3326] = {.lex_state = 25}, + [3327] = {.lex_state = 25}, + [3328] = {.lex_state = 25}, + [3329] = {.lex_state = 25}, + [3330] = {.lex_state = 25}, + [3331] = {.lex_state = 25}, + [3332] = {.lex_state = 25}, + [3333] = {.lex_state = 25}, + [3334] = {.lex_state = 25}, + [3335] = {.lex_state = 25}, + [3336] = {.lex_state = 25}, + [3337] = {.lex_state = 25}, + [3338] = {.lex_state = 25}, + [3339] = {.lex_state = 25}, + [3340] = {.lex_state = 25}, + [3341] = {.lex_state = 25}, + [3342] = {.lex_state = 25}, + [3343] = {.lex_state = 25}, + [3344] = {.lex_state = 25}, + [3345] = {.lex_state = 25}, + [3346] = {.lex_state = 25}, + [3347] = {.lex_state = 25}, + [3348] = {.lex_state = 25}, + [3349] = {.lex_state = 25}, + [3350] = {.lex_state = 25}, + [3351] = {.lex_state = 25}, + [3352] = {.lex_state = 25}, + [3353] = {.lex_state = 25}, + [3354] = {.lex_state = 25}, + [3355] = {.lex_state = 25}, + [3356] = {.lex_state = 25}, + [3357] = {.lex_state = 25}, + [3358] = {.lex_state = 25}, + [3359] = {.lex_state = 25}, + [3360] = {.lex_state = 25}, + [3361] = {.lex_state = 25}, + [3362] = {.lex_state = 25}, + [3363] = {.lex_state = 25}, + [3364] = {.lex_state = 25}, + [3365] = {.lex_state = 25}, + [3366] = {.lex_state = 25}, + [3367] = {.lex_state = 25}, + [3368] = {.lex_state = 25}, + [3369] = {.lex_state = 25}, + [3370] = {.lex_state = 25}, + [3371] = {.lex_state = 25}, + [3372] = {.lex_state = 25}, + [3373] = {.lex_state = 25}, + [3374] = {.lex_state = 25}, + [3375] = {.lex_state = 25}, + [3376] = {.lex_state = 25}, + [3377] = {.lex_state = 25}, + [3378] = {.lex_state = 25}, + [3379] = {.lex_state = 25}, + [3380] = {.lex_state = 25}, + [3381] = {.lex_state = 25}, + [3382] = {.lex_state = 25}, + [3383] = {.lex_state = 25}, + [3384] = {.lex_state = 25}, + [3385] = {.lex_state = 25}, + [3386] = {.lex_state = 25}, + [3387] = {.lex_state = 25}, + [3388] = {.lex_state = 25}, + [3389] = {.lex_state = 25}, + [3390] = {.lex_state = 25}, + [3391] = {.lex_state = 25}, + [3392] = {.lex_state = 25}, + [3393] = {.lex_state = 25}, + [3394] = {.lex_state = 25}, + [3395] = {.lex_state = 25}, + [3396] = {.lex_state = 25}, + [3397] = {.lex_state = 25}, + [3398] = {.lex_state = 25}, + [3399] = {.lex_state = 25}, + [3400] = {.lex_state = 25}, + [3401] = {.lex_state = 25}, + [3402] = {.lex_state = 25}, + [3403] = {.lex_state = 25}, + [3404] = {.lex_state = 25}, + [3405] = {.lex_state = 25}, + [3406] = {.lex_state = 25}, + [3407] = {.lex_state = 30}, + [3408] = {.lex_state = 30}, + [3409] = {.lex_state = 25}, + [3410] = {.lex_state = 25}, + [3411] = {.lex_state = 25}, + [3412] = {.lex_state = 25}, + [3413] = {.lex_state = 25}, + [3414] = {.lex_state = 25}, + [3415] = {.lex_state = 25}, + [3416] = {.lex_state = 25}, + [3417] = {.lex_state = 25}, + [3418] = {.lex_state = 25}, + [3419] = {.lex_state = 25}, + [3420] = {.lex_state = 25}, + [3421] = {.lex_state = 25}, + [3422] = {.lex_state = 25}, + [3423] = {.lex_state = 25}, + [3424] = {.lex_state = 247}, + [3425] = {.lex_state = 247}, + [3426] = {.lex_state = 247}, + [3427] = {.lex_state = 247}, + [3428] = {.lex_state = 247}, + [3429] = {.lex_state = 247}, + [3430] = {.lex_state = 247}, + [3431] = {.lex_state = 247}, + [3432] = {.lex_state = 247}, + [3433] = {.lex_state = 247}, + [3434] = {.lex_state = 247}, + [3435] = {.lex_state = 247}, + [3436] = {.lex_state = 247}, + [3437] = {.lex_state = 247}, + [3438] = {.lex_state = 247}, + [3439] = {.lex_state = 247}, + [3440] = {.lex_state = 247}, + [3441] = {.lex_state = 247}, + [3442] = {.lex_state = 247}, + [3443] = {.lex_state = 247}, + [3444] = {.lex_state = 247}, + [3445] = {.lex_state = 247}, + [3446] = {.lex_state = 247}, + [3447] = {.lex_state = 247}, + [3448] = {.lex_state = 247}, + [3449] = {.lex_state = 247}, + [3450] = {.lex_state = 247}, + [3451] = {.lex_state = 247}, + [3452] = {.lex_state = 247}, + [3453] = {.lex_state = 247}, + [3454] = {.lex_state = 247}, + [3455] = {.lex_state = 247}, + [3456] = {.lex_state = 247}, + [3457] = {.lex_state = 247}, + [3458] = {.lex_state = 247}, + [3459] = {.lex_state = 247}, + [3460] = {.lex_state = 247}, + [3461] = {.lex_state = 247}, + [3462] = {.lex_state = 247}, + [3463] = {.lex_state = 247}, + [3464] = {.lex_state = 247}, + [3465] = {.lex_state = 247}, + [3466] = {.lex_state = 247}, + [3467] = {.lex_state = 247}, + [3468] = {.lex_state = 247}, + [3469] = {.lex_state = 247}, + [3470] = {.lex_state = 247}, + [3471] = {.lex_state = 247}, + [3472] = {.lex_state = 247}, + [3473] = {.lex_state = 247}, + [3474] = {.lex_state = 247}, + [3475] = {.lex_state = 247}, + [3476] = {.lex_state = 247}, + [3477] = {.lex_state = 247}, + [3478] = {.lex_state = 247}, + [3479] = {.lex_state = 247}, + [3480] = {.lex_state = 247}, + [3481] = {.lex_state = 247}, + [3482] = {.lex_state = 247}, + [3483] = {.lex_state = 247}, + [3484] = {.lex_state = 247}, + [3485] = {.lex_state = 247}, + [3486] = {.lex_state = 247}, + [3487] = {.lex_state = 247}, + [3488] = {.lex_state = 247}, + [3489] = {.lex_state = 247}, + [3490] = {.lex_state = 247}, + [3491] = {.lex_state = 247}, + [3492] = {.lex_state = 247}, + [3493] = {.lex_state = 247}, + [3494] = {.lex_state = 247}, + [3495] = {.lex_state = 247}, + [3496] = {.lex_state = 247}, + [3497] = {.lex_state = 247}, + [3498] = {.lex_state = 247}, + [3499] = {.lex_state = 247}, + [3500] = {.lex_state = 247}, + [3501] = {.lex_state = 247}, + [3502] = {.lex_state = 247}, + [3503] = {.lex_state = 247}, + [3504] = {.lex_state = 247}, + [3505] = {.lex_state = 247}, + [3506] = {.lex_state = 247}, + [3507] = {.lex_state = 247}, + [3508] = {.lex_state = 247}, + [3509] = {.lex_state = 247}, + [3510] = {.lex_state = 247}, + [3511] = {.lex_state = 247}, + [3512] = {.lex_state = 247}, + [3513] = {.lex_state = 247}, + [3514] = {.lex_state = 247}, + [3515] = {.lex_state = 247}, + [3516] = {.lex_state = 247}, + [3517] = {.lex_state = 247}, + [3518] = {.lex_state = 247}, + [3519] = {.lex_state = 247}, + [3520] = {.lex_state = 247}, + [3521] = {.lex_state = 247}, + [3522] = {.lex_state = 247}, + [3523] = {.lex_state = 247}, + [3524] = {.lex_state = 247}, + [3525] = {.lex_state = 247}, + [3526] = {.lex_state = 247}, + [3527] = {.lex_state = 247}, + [3528] = {.lex_state = 247}, + [3529] = {.lex_state = 247}, + [3530] = {.lex_state = 247}, + [3531] = {.lex_state = 247}, + [3532] = {.lex_state = 247}, + [3533] = {.lex_state = 247}, + [3534] = {.lex_state = 247}, + [3535] = {.lex_state = 247}, + [3536] = {.lex_state = 247}, + [3537] = {.lex_state = 247}, + [3538] = {.lex_state = 247}, + [3539] = {.lex_state = 247}, + [3540] = {.lex_state = 247}, + [3541] = {.lex_state = 247}, + [3542] = {.lex_state = 247}, + [3543] = {.lex_state = 247}, + [3544] = {.lex_state = 247}, + [3545] = {.lex_state = 247}, + [3546] = {.lex_state = 247}, + [3547] = {.lex_state = 247}, + [3548] = {.lex_state = 247}, + [3549] = {.lex_state = 247}, + [3550] = {.lex_state = 247}, + [3551] = {.lex_state = 247}, + [3552] = {.lex_state = 247}, + [3553] = {.lex_state = 247}, + [3554] = {.lex_state = 247}, + [3555] = {.lex_state = 247}, + [3556] = {.lex_state = 247}, + [3557] = {.lex_state = 247}, + [3558] = {.lex_state = 247}, + [3559] = {.lex_state = 247}, + [3560] = {.lex_state = 247}, + [3561] = {.lex_state = 247}, + [3562] = {.lex_state = 247}, + [3563] = {.lex_state = 247}, + [3564] = {.lex_state = 247}, + [3565] = {.lex_state = 247}, + [3566] = {.lex_state = 247}, + [3567] = {.lex_state = 247}, + [3568] = {.lex_state = 247}, + [3569] = {.lex_state = 247}, + [3570] = {.lex_state = 247}, + [3571] = {.lex_state = 247}, + [3572] = {.lex_state = 247}, + [3573] = {.lex_state = 247}, + [3574] = {.lex_state = 247}, + [3575] = {.lex_state = 247}, + [3576] = {.lex_state = 247}, + [3577] = {.lex_state = 247}, + [3578] = {.lex_state = 247}, + [3579] = {.lex_state = 247}, + [3580] = {.lex_state = 247}, + [3581] = {.lex_state = 247}, + [3582] = {.lex_state = 247}, + [3583] = {.lex_state = 247}, + [3584] = {.lex_state = 247}, + [3585] = {.lex_state = 247}, + [3586] = {.lex_state = 247}, + [3587] = {.lex_state = 247}, + [3588] = {.lex_state = 247}, + [3589] = {.lex_state = 247}, + [3590] = {.lex_state = 247}, + [3591] = {.lex_state = 247}, + [3592] = {.lex_state = 247}, + [3593] = {.lex_state = 247}, + [3594] = {.lex_state = 247}, + [3595] = {.lex_state = 247}, + [3596] = {.lex_state = 247}, + [3597] = {.lex_state = 247}, + [3598] = {.lex_state = 247}, + [3599] = {.lex_state = 247}, + [3600] = {.lex_state = 247}, + [3601] = {.lex_state = 247}, + [3602] = {.lex_state = 247}, + [3603] = {.lex_state = 247}, + [3604] = {.lex_state = 247}, + [3605] = {.lex_state = 247}, + [3606] = {.lex_state = 247}, + [3607] = {.lex_state = 247}, + [3608] = {.lex_state = 247}, + [3609] = {.lex_state = 247}, + [3610] = {.lex_state = 247}, + [3611] = {.lex_state = 247}, + [3612] = {.lex_state = 247}, + [3613] = {.lex_state = 247}, + [3614] = {.lex_state = 247}, + [3615] = {.lex_state = 247}, + [3616] = {.lex_state = 247}, + [3617] = {.lex_state = 247}, + [3618] = {.lex_state = 247}, + [3619] = {.lex_state = 247}, + [3620] = {.lex_state = 247}, + [3621] = {.lex_state = 247}, + [3622] = {.lex_state = 247}, + [3623] = {.lex_state = 247}, + [3624] = {.lex_state = 247}, + [3625] = {.lex_state = 247}, + [3626] = {.lex_state = 247}, + [3627] = {.lex_state = 247}, + [3628] = {.lex_state = 247}, + [3629] = {.lex_state = 247}, + [3630] = {.lex_state = 247}, + [3631] = {.lex_state = 247}, + [3632] = {.lex_state = 247}, + [3633] = {.lex_state = 247}, + [3634] = {.lex_state = 247}, + [3635] = {.lex_state = 247}, + [3636] = {.lex_state = 247}, + [3637] = {.lex_state = 247}, + [3638] = {.lex_state = 247}, + [3639] = {.lex_state = 247}, + [3640] = {.lex_state = 247}, + [3641] = {.lex_state = 247}, + [3642] = {.lex_state = 247}, + [3643] = {.lex_state = 247}, + [3644] = {.lex_state = 247}, + [3645] = {.lex_state = 247}, + [3646] = {.lex_state = 247}, + [3647] = {.lex_state = 247}, + [3648] = {.lex_state = 247}, + [3649] = {.lex_state = 247}, + [3650] = {.lex_state = 247}, + [3651] = {.lex_state = 247}, + [3652] = {.lex_state = 247}, + [3653] = {.lex_state = 247}, + [3654] = {.lex_state = 247}, + [3655] = {.lex_state = 247}, + [3656] = {.lex_state = 247}, + [3657] = {.lex_state = 247}, + [3658] = {.lex_state = 247}, + [3659] = {.lex_state = 247}, + [3660] = {.lex_state = 247}, + [3661] = {.lex_state = 247}, + [3662] = {.lex_state = 247}, + [3663] = {.lex_state = 247}, + [3664] = {.lex_state = 247}, + [3665] = {.lex_state = 247}, + [3666] = {.lex_state = 247}, + [3667] = {.lex_state = 247}, + [3668] = {.lex_state = 247}, + [3669] = {.lex_state = 247}, + [3670] = {.lex_state = 247}, + [3671] = {.lex_state = 247}, + [3672] = {.lex_state = 247}, + [3673] = {.lex_state = 247}, + [3674] = {.lex_state = 247}, + [3675] = {.lex_state = 247}, + [3676] = {.lex_state = 247}, + [3677] = {.lex_state = 247}, + [3678] = {.lex_state = 247}, + [3679] = {.lex_state = 247}, + [3680] = {.lex_state = 247}, + [3681] = {.lex_state = 247}, + [3682] = {.lex_state = 247}, + [3683] = {.lex_state = 247}, + [3684] = {.lex_state = 247}, + [3685] = {.lex_state = 247}, + [3686] = {.lex_state = 247}, + [3687] = {.lex_state = 247}, + [3688] = {.lex_state = 247}, + [3689] = {.lex_state = 247}, + [3690] = {.lex_state = 247}, + [3691] = {.lex_state = 247}, + [3692] = {.lex_state = 247}, + [3693] = {.lex_state = 247}, + [3694] = {.lex_state = 247}, + [3695] = {.lex_state = 247}, + [3696] = {.lex_state = 247}, + [3697] = {.lex_state = 247}, + [3698] = {.lex_state = 247}, + [3699] = {.lex_state = 247}, + [3700] = {.lex_state = 247}, + [3701] = {.lex_state = 247}, + [3702] = {.lex_state = 247}, + [3703] = {.lex_state = 247}, + [3704] = {.lex_state = 247}, + [3705] = {.lex_state = 247}, + [3706] = {.lex_state = 247}, + [3707] = {.lex_state = 247}, + [3708] = {.lex_state = 247}, + [3709] = {.lex_state = 247}, + [3710] = {.lex_state = 247}, + [3711] = {.lex_state = 247}, + [3712] = {.lex_state = 247}, + [3713] = {.lex_state = 247}, + [3714] = {.lex_state = 247}, + [3715] = {.lex_state = 247}, + [3716] = {.lex_state = 247}, + [3717] = {.lex_state = 247}, + [3718] = {.lex_state = 247}, + [3719] = {.lex_state = 247}, + [3720] = {.lex_state = 247}, + [3721] = {.lex_state = 247}, + [3722] = {.lex_state = 247}, + [3723] = {.lex_state = 247}, + [3724] = {.lex_state = 247}, + [3725] = {.lex_state = 247}, + [3726] = {.lex_state = 247}, + [3727] = {.lex_state = 247}, + [3728] = {.lex_state = 247}, + [3729] = {.lex_state = 247}, + [3730] = {.lex_state = 247}, + [3731] = {.lex_state = 247}, + [3732] = {.lex_state = 247}, + [3733] = {.lex_state = 247}, + [3734] = {.lex_state = 247}, + [3735] = {.lex_state = 247}, + [3736] = {.lex_state = 247}, + [3737] = {.lex_state = 247}, + [3738] = {.lex_state = 247}, + [3739] = {.lex_state = 247}, + [3740] = {.lex_state = 247}, + [3741] = {.lex_state = 247}, + [3742] = {.lex_state = 247}, + [3743] = {.lex_state = 247}, + [3744] = {.lex_state = 247}, + [3745] = {.lex_state = 247}, + [3746] = {.lex_state = 247}, + [3747] = {.lex_state = 247}, + [3748] = {.lex_state = 247}, + [3749] = {.lex_state = 34}, + [3750] = {.lex_state = 247}, + [3751] = {.lex_state = 247}, + [3752] = {.lex_state = 247}, + [3753] = {.lex_state = 247}, + [3754] = {.lex_state = 247}, + [3755] = {.lex_state = 247}, + [3756] = {.lex_state = 247}, + [3757] = {.lex_state = 34}, + [3758] = {.lex_state = 247}, + [3759] = {.lex_state = 247}, + [3760] = {.lex_state = 247}, + [3761] = {.lex_state = 247}, + [3762] = {.lex_state = 247}, + [3763] = {.lex_state = 247}, + [3764] = {.lex_state = 247}, + [3765] = {.lex_state = 247}, + [3766] = {.lex_state = 247}, + [3767] = {.lex_state = 34}, + [3768] = {.lex_state = 247}, + [3769] = {.lex_state = 247}, + [3770] = {.lex_state = 247}, + [3771] = {.lex_state = 247}, + [3772] = {.lex_state = 247}, + [3773] = {.lex_state = 247}, + [3774] = {.lex_state = 247}, + [3775] = {.lex_state = 247}, + [3776] = {.lex_state = 247}, + [3777] = {.lex_state = 247}, + [3778] = {.lex_state = 34}, + [3779] = {.lex_state = 247}, + [3780] = {.lex_state = 247}, + [3781] = {.lex_state = 247}, + [3782] = {.lex_state = 247}, + [3783] = {.lex_state = 247}, + [3784] = {.lex_state = 247}, + [3785] = {.lex_state = 247}, + [3786] = {.lex_state = 247}, + [3787] = {.lex_state = 247}, + [3788] = {.lex_state = 247}, + [3789] = {.lex_state = 247}, + [3790] = {.lex_state = 34}, + [3791] = {.lex_state = 247}, + [3792] = {.lex_state = 247}, + [3793] = {.lex_state = 247}, + [3794] = {.lex_state = 247}, + [3795] = {.lex_state = 247}, + [3796] = {.lex_state = 247}, + [3797] = {.lex_state = 247}, + [3798] = {.lex_state = 247}, + [3799] = {.lex_state = 247}, + [3800] = {.lex_state = 247}, + [3801] = {.lex_state = 247}, + [3802] = {.lex_state = 247}, + [3803] = {.lex_state = 247}, + [3804] = {.lex_state = 247}, + [3805] = {.lex_state = 247}, + [3806] = {.lex_state = 247}, + [3807] = {.lex_state = 247}, + [3808] = {.lex_state = 247}, + [3809] = {.lex_state = 247}, + [3810] = {.lex_state = 247}, + [3811] = {.lex_state = 247}, + [3812] = {.lex_state = 247}, + [3813] = {.lex_state = 247}, + [3814] = {.lex_state = 247}, + [3815] = {.lex_state = 247}, + [3816] = {.lex_state = 247}, + [3817] = {.lex_state = 34}, + [3818] = {.lex_state = 247}, + [3819] = {.lex_state = 247}, + [3820] = {.lex_state = 247}, + [3821] = {.lex_state = 247}, + [3822] = {.lex_state = 247}, + [3823] = {.lex_state = 247}, + [3824] = {.lex_state = 247}, + [3825] = {.lex_state = 247}, + [3826] = {.lex_state = 247}, + [3827] = {.lex_state = 247}, + [3828] = {.lex_state = 247}, + [3829] = {.lex_state = 247}, + [3830] = {.lex_state = 247}, + [3831] = {.lex_state = 247}, + [3832] = {.lex_state = 247}, + [3833] = {.lex_state = 247}, + [3834] = {.lex_state = 247}, + [3835] = {.lex_state = 247}, + [3836] = {.lex_state = 247}, + [3837] = {.lex_state = 247}, + [3838] = {.lex_state = 247}, + [3839] = {.lex_state = 247}, + [3840] = {.lex_state = 247}, + [3841] = {.lex_state = 247}, + [3842] = {.lex_state = 247}, + [3843] = {.lex_state = 34}, + [3844] = {.lex_state = 247}, + [3845] = {.lex_state = 247}, + [3846] = {.lex_state = 247}, + [3847] = {.lex_state = 247}, + [3848] = {.lex_state = 247}, + [3849] = {.lex_state = 247}, + [3850] = {.lex_state = 247}, + [3851] = {.lex_state = 247}, + [3852] = {.lex_state = 247}, + [3853] = {.lex_state = 247}, + [3854] = {.lex_state = 247}, + [3855] = {.lex_state = 34}, + [3856] = {.lex_state = 247}, + [3857] = {.lex_state = 247}, + [3858] = {.lex_state = 247}, + [3859] = {.lex_state = 247}, + [3860] = {.lex_state = 247}, + [3861] = {.lex_state = 247}, + [3862] = {.lex_state = 247}, + [3863] = {.lex_state = 247}, + [3864] = {.lex_state = 247}, + [3865] = {.lex_state = 247}, + [3866] = {.lex_state = 247}, + [3867] = {.lex_state = 247}, + [3868] = {.lex_state = 34}, + [3869] = {.lex_state = 247}, + [3870] = {.lex_state = 247}, + [3871] = {.lex_state = 247}, + [3872] = {.lex_state = 247}, + [3873] = {.lex_state = 247}, + [3874] = {.lex_state = 34}, + [3875] = {.lex_state = 247}, + [3876] = {.lex_state = 247}, + [3877] = {.lex_state = 247}, + [3878] = {.lex_state = 247}, + [3879] = {.lex_state = 247}, + [3880] = {.lex_state = 247}, + [3881] = {.lex_state = 247}, + [3882] = {.lex_state = 247}, + [3883] = {.lex_state = 247}, + [3884] = {.lex_state = 247}, + [3885] = {.lex_state = 247}, + [3886] = {.lex_state = 247}, + [3887] = {.lex_state = 247}, + [3888] = {.lex_state = 247}, + [3889] = {.lex_state = 247}, + [3890] = {.lex_state = 247}, + [3891] = {.lex_state = 247}, + [3892] = {.lex_state = 247}, + [3893] = {.lex_state = 247}, + [3894] = {.lex_state = 21}, + [3895] = {.lex_state = 21}, + [3896] = {.lex_state = 247}, + [3897] = {.lex_state = 247}, + [3898] = {.lex_state = 247}, + [3899] = {.lex_state = 247}, + [3900] = {.lex_state = 247}, + [3901] = {.lex_state = 21}, + [3902] = {.lex_state = 21}, + [3903] = {.lex_state = 247}, + [3904] = {.lex_state = 21}, + [3905] = {.lex_state = 247}, + [3906] = {.lex_state = 247}, + [3907] = {.lex_state = 247}, + [3908] = {.lex_state = 247}, + [3909] = {.lex_state = 247}, + [3910] = {.lex_state = 247}, + [3911] = {.lex_state = 247}, + [3912] = {.lex_state = 21}, + [3913] = {.lex_state = 247}, + [3914] = {.lex_state = 21}, + [3915] = {.lex_state = 247}, + [3916] = {.lex_state = 247}, + [3917] = {.lex_state = 247}, + [3918] = {.lex_state = 247}, + [3919] = {.lex_state = 247}, + [3920] = {.lex_state = 21}, + [3921] = {.lex_state = 247}, + [3922] = {.lex_state = 247}, + [3923] = {.lex_state = 247}, + [3924] = {.lex_state = 247}, + [3925] = {.lex_state = 247}, + [3926] = {.lex_state = 247}, + [3927] = {.lex_state = 247}, + [3928] = {.lex_state = 247}, + [3929] = {.lex_state = 247}, + [3930] = {.lex_state = 21}, + [3931] = {.lex_state = 247}, + [3932] = {.lex_state = 21}, + [3933] = {.lex_state = 247}, + [3934] = {.lex_state = 247}, + [3935] = {.lex_state = 247}, + [3936] = {.lex_state = 21}, + [3937] = {.lex_state = 247}, + [3938] = {.lex_state = 247}, + [3939] = {.lex_state = 21}, + [3940] = {.lex_state = 247}, + [3941] = {.lex_state = 247}, + [3942] = {.lex_state = 21}, + [3943] = {.lex_state = 247}, + [3944] = {.lex_state = 247}, + [3945] = {.lex_state = 247}, + [3946] = {.lex_state = 247}, + [3947] = {.lex_state = 247}, + [3948] = {.lex_state = 247}, + [3949] = {.lex_state = 21}, + [3950] = {.lex_state = 247}, + [3951] = {.lex_state = 247}, + [3952] = {.lex_state = 21}, + [3953] = {.lex_state = 247}, + [3954] = {.lex_state = 247}, + [3955] = {.lex_state = 247}, + [3956] = {.lex_state = 247}, + [3957] = {.lex_state = 247}, + [3958] = {.lex_state = 247}, + [3959] = {.lex_state = 247}, + [3960] = {.lex_state = 247}, + [3961] = {.lex_state = 247}, + [3962] = {.lex_state = 247}, + [3963] = {.lex_state = 247}, + [3964] = {.lex_state = 21}, + [3965] = {.lex_state = 247}, + [3966] = {.lex_state = 21}, + [3967] = {.lex_state = 21}, + [3968] = {.lex_state = 247}, + [3969] = {.lex_state = 247}, + [3970] = {.lex_state = 247}, + [3971] = {.lex_state = 247}, + [3972] = {.lex_state = 247}, + [3973] = {.lex_state = 247}, + [3974] = {.lex_state = 247}, + [3975] = {.lex_state = 247}, + [3976] = {.lex_state = 247}, + [3977] = {.lex_state = 21}, + [3978] = {.lex_state = 247}, + [3979] = {.lex_state = 247}, + [3980] = {.lex_state = 247}, + [3981] = {.lex_state = 247}, + [3982] = {.lex_state = 247}, + [3983] = {.lex_state = 247}, + [3984] = {.lex_state = 247}, + [3985] = {.lex_state = 247}, + [3986] = {.lex_state = 247}, + [3987] = {.lex_state = 247}, + [3988] = {.lex_state = 247}, + [3989] = {.lex_state = 21}, + [3990] = {.lex_state = 247}, + [3991] = {.lex_state = 247}, + [3992] = {.lex_state = 247}, + [3993] = {.lex_state = 247}, + [3994] = {.lex_state = 21}, + [3995] = {.lex_state = 247}, + [3996] = {.lex_state = 247}, + [3997] = {.lex_state = 247}, + [3998] = {.lex_state = 1}, + [3999] = {.lex_state = 35}, + [4000] = {.lex_state = 35}, + [4001] = {.lex_state = 35}, + [4002] = {.lex_state = 33}, + [4003] = {.lex_state = 31}, + [4004] = {.lex_state = 35}, + [4005] = {.lex_state = 35}, + [4006] = {.lex_state = 35}, + [4007] = {.lex_state = 35}, + [4008] = {.lex_state = 31}, + [4009] = {.lex_state = 35}, + [4010] = {.lex_state = 35}, + [4011] = {.lex_state = 35}, + [4012] = {.lex_state = 31}, + [4013] = {.lex_state = 21}, + [4014] = {.lex_state = 21}, + [4015] = {.lex_state = 21}, + [4016] = {.lex_state = 21}, + [4017] = {.lex_state = 21}, + [4018] = {.lex_state = 21}, + [4019] = {.lex_state = 21}, + [4020] = {.lex_state = 21}, + [4021] = {.lex_state = 21}, + [4022] = {.lex_state = 32}, + [4023] = {.lex_state = 32}, + [4024] = {.lex_state = 32}, + [4025] = {.lex_state = 32}, + [4026] = {.lex_state = 32}, + [4027] = {.lex_state = 32}, + [4028] = {.lex_state = 32}, + [4029] = {.lex_state = 32}, + [4030] = {.lex_state = 32}, + [4031] = {.lex_state = 32}, + [4032] = {.lex_state = 32}, + [4033] = {.lex_state = 32}, + [4034] = {.lex_state = 32}, + [4035] = {.lex_state = 32}, + [4036] = {.lex_state = 32}, + [4037] = {.lex_state = 32}, + [4038] = {.lex_state = 247}, + [4039] = {.lex_state = 32}, + [4040] = {.lex_state = 32}, + [4041] = {.lex_state = 32}, + [4042] = {.lex_state = 32}, + [4043] = {.lex_state = 32}, + [4044] = {.lex_state = 32}, + [4045] = {.lex_state = 32}, + [4046] = {.lex_state = 32}, + [4047] = {.lex_state = 32}, + [4048] = {.lex_state = 32}, + [4049] = {.lex_state = 32}, + [4050] = {.lex_state = 32}, + [4051] = {.lex_state = 32}, + [4052] = {.lex_state = 32}, + [4053] = {.lex_state = 32}, + [4054] = {.lex_state = 32}, + [4055] = {.lex_state = 32}, + [4056] = {.lex_state = 32}, + [4057] = {.lex_state = 32}, + [4058] = {.lex_state = 32}, + [4059] = {.lex_state = 32}, + [4060] = {.lex_state = 32}, + [4061] = {.lex_state = 32}, + [4062] = {.lex_state = 32}, + [4063] = {.lex_state = 32}, + [4064] = {.lex_state = 32}, + [4065] = {.lex_state = 32}, + [4066] = {.lex_state = 32}, + [4067] = {.lex_state = 32}, + [4068] = {.lex_state = 32}, + [4069] = {.lex_state = 32}, + [4070] = {.lex_state = 32}, + [4071] = {.lex_state = 32}, + [4072] = {.lex_state = 32}, + [4073] = {.lex_state = 32}, + [4074] = {.lex_state = 32}, + [4075] = {.lex_state = 32}, + [4076] = {.lex_state = 22}, + [4077] = {.lex_state = 32}, + [4078] = {.lex_state = 32}, + [4079] = {.lex_state = 32}, + [4080] = {.lex_state = 31}, + [4081] = {.lex_state = 32}, + [4082] = {.lex_state = 32}, + [4083] = {.lex_state = 32}, + [4084] = {.lex_state = 32}, + [4085] = {.lex_state = 32}, + [4086] = {.lex_state = 32}, + [4087] = {.lex_state = 32}, + [4088] = {.lex_state = 32}, + [4089] = {.lex_state = 32}, + [4090] = {.lex_state = 32}, + [4091] = {.lex_state = 32}, + [4092] = {.lex_state = 32}, + [4093] = {.lex_state = 32}, + [4094] = {.lex_state = 32}, + [4095] = {.lex_state = 32}, + [4096] = {.lex_state = 32}, + [4097] = {.lex_state = 20}, + [4098] = {.lex_state = 20}, + [4099] = {.lex_state = 20}, + [4100] = {.lex_state = 20}, + [4101] = {.lex_state = 20}, + [4102] = {.lex_state = 20}, + [4103] = {.lex_state = 20}, + [4104] = {.lex_state = 20}, + [4105] = {.lex_state = 20}, + [4106] = {.lex_state = 20}, + [4107] = {.lex_state = 20}, + [4108] = {.lex_state = 20}, + [4109] = {.lex_state = 20}, + [4110] = {.lex_state = 20}, + [4111] = {.lex_state = 20}, + [4112] = {.lex_state = 20}, + [4113] = {.lex_state = 247}, + [4114] = {.lex_state = 20}, + [4115] = {.lex_state = 20}, + [4116] = {.lex_state = 20}, + [4117] = {.lex_state = 20}, + [4118] = {.lex_state = 20}, + [4119] = {.lex_state = 25}, + [4120] = {.lex_state = 247}, + [4121] = {.lex_state = 247}, + [4122] = {.lex_state = 25}, + [4123] = {.lex_state = 22}, + [4124] = {.lex_state = 22}, + [4125] = {.lex_state = 22}, + [4126] = {.lex_state = 25}, + [4127] = {.lex_state = 247}, + [4128] = {.lex_state = 247}, + [4129] = {.lex_state = 247}, + [4130] = {.lex_state = 25}, + [4131] = {.lex_state = 22}, + [4132] = {.lex_state = 25}, + [4133] = {.lex_state = 247}, + [4134] = {.lex_state = 247}, + [4135] = {.lex_state = 247}, + [4136] = {.lex_state = 22}, + [4137] = {.lex_state = 25}, + [4138] = {.lex_state = 247}, + [4139] = {.lex_state = 247}, + [4140] = {.lex_state = 247}, + [4141] = {.lex_state = 247}, + [4142] = {.lex_state = 247}, + [4143] = {.lex_state = 247}, + [4144] = {.lex_state = 247}, + [4145] = {.lex_state = 25}, + [4146] = {.lex_state = 247}, + [4147] = {.lex_state = 25}, + [4148] = {.lex_state = 247}, + [4149] = {.lex_state = 36}, + [4150] = {.lex_state = 22}, + [4151] = {.lex_state = 247}, + [4152] = {.lex_state = 247}, + [4153] = {.lex_state = 22}, + [4154] = {.lex_state = 247}, + [4155] = {.lex_state = 22}, + [4156] = {.lex_state = 247}, + [4157] = {.lex_state = 247}, + [4158] = {.lex_state = 22}, + [4159] = {.lex_state = 247}, + [4160] = {.lex_state = 247}, + [4161] = {.lex_state = 247}, + [4162] = {.lex_state = 247}, + [4163] = {.lex_state = 22}, + [4164] = {.lex_state = 22}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9955,11 +10496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_str_lit_token1] = ACTIONS(1), - [aux_sym_str_lit_token2] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), - [aux_sym_char_lit_token2] = ACTIONS(1), - [aux_sym_char_lit_token3] = ACTIONS(1), - [aux_sym_char_lit_token5] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [anon_sym_POUND_CARET] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), @@ -10007,38 +10544,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [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), + [sym_source] = STATE(4157), + [sym__gap] = STATE(321), + [sym_dis_expr] = STATE(321), + [sym__form] = STATE(1991), + [sym_num_lit] = STATE(1991), + [sym_kwd_lit] = STATE(1991), + [sym_str_lit] = STATE(1991), + [sym_char_lit] = STATE(1991), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1991), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1991), + [sym_set_lit] = STATE(1991), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1991), + [sym_splicing_read_cond_lit] = STATE(1991), + [sym_var_quoting_lit] = STATE(1991), + [sym_quoting_lit] = STATE(1991), + [sym_syn_quoting_lit] = STATE(1991), + [sym_unquote_splicing_lit] = STATE(1991), + [sym_unquoting_lit] = STATE(1991), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1991), + [sym_package_lit] = STATE(1991), + [sym_include_reader_macro] = STATE(1991), + [sym_complex_num_lit] = STATE(1991), + [aux_sym_source_repeat1] = STATE(321), + [aux_sym_list_lit_repeat1] = STATE(2808), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -10075,152 +10612,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(57), }, [2] = { - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2285), + [sym_num_lit] = STATE(2285), + [sym_kwd_lit] = STATE(2285), + [sym_str_lit] = STATE(2285), + [sym_char_lit] = STATE(2285), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2285), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2285), + [sym_set_lit] = STATE(2285), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2285), + [sym_splicing_read_cond_lit] = STATE(2285), + [sym_var_quoting_lit] = STATE(2285), + [sym_quoting_lit] = STATE(2285), + [sym_syn_quoting_lit] = STATE(2285), + [sym_unquote_splicing_lit] = STATE(2285), + [sym_unquoting_lit] = STATE(2285), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2285), + [sym_package_lit] = STATE(2285), + [sym_include_reader_macro] = STATE(2285), + [sym_complex_num_lit] = STATE(2285), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), [sym__ws] = ACTIONS(59), [sym_comment] = ACTIONS(59), - [anon_sym_POUND_] = ACTIONS(59), - [anon_sym_POUND] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(63), - [aux_sym_num_lit_token1] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_COLON_COLON] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_nil_lit] = ACTIONS(63), - [aux_sym_sym_lit_token1] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(59), - [anon_sym_POUND_CARET] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(59), - [anon_sym_RPAREN] = ACTIONS(59), - [anon_sym_POUND0A] = ACTIONS(75), - [anon_sym_POUND0a] = ACTIONS(75), - [anon_sym_POUND_QMARK] = ACTIONS(77), - [anon_sym_POUND_QMARK_AT] = ACTIONS(79), - [anon_sym_POUND_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_COMMA_AT] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_POUND_] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(69), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(73), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(69), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_POUND_CARET] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(63), - [anon_sym_cl] = ACTIONS(91), - [aux_sym_accumulation_verb_token1] = ACTIONS(91), - [anon_sym_for] = ACTIONS(91), - [anon_sym_and] = ACTIONS(91), - [anon_sym_as] = ACTIONS(91), - [anon_sym_with] = ACTIONS(91), - [anon_sym_do] = ACTIONS(91), - [anon_sym_while] = ACTIONS(91), - [anon_sym_until] = ACTIONS(91), - [anon_sym_repeat] = ACTIONS(91), - [anon_sym_when] = ACTIONS(91), - [anon_sym_if] = ACTIONS(91), - [anon_sym_unless] = ACTIONS(91), - [anon_sym_always] = ACTIONS(91), - [anon_sym_thereis] = ACTIONS(91), - [anon_sym_never] = ACTIONS(91), - [anon_sym_else] = ACTIONS(91), - [anon_sym_finally] = ACTIONS(91), - [anon_sym_return] = ACTIONS(91), - [anon_sym_initially] = ACTIONS(91), - [anon_sym_POUNDP] = ACTIONS(93), - [anon_sym_POUNDp] = ACTIONS(93), - [sym_self_referential_reader_macro] = ACTIONS(95), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), - [anon_sym_POUNDc] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(69), + [anon_sym_cl] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(118), + [aux_sym_accumulation_verb_token1] = ACTIONS(120), + [anon_sym_for] = ACTIONS(120), + [anon_sym_and] = ACTIONS(120), + [anon_sym_as] = ACTIONS(120), + [anon_sym_with] = ACTIONS(120), + [anon_sym_do] = ACTIONS(120), + [anon_sym_while] = ACTIONS(120), + [anon_sym_until] = ACTIONS(120), + [anon_sym_repeat] = ACTIONS(120), + [anon_sym_when] = ACTIONS(120), + [anon_sym_if] = ACTIONS(120), + [anon_sym_unless] = ACTIONS(120), + [anon_sym_always] = ACTIONS(120), + [anon_sym_thereis] = ACTIONS(120), + [anon_sym_never] = ACTIONS(120), + [anon_sym_else] = ACTIONS(120), + [anon_sym_finally] = ACTIONS(120), + [anon_sym_return] = ACTIONS(120), + [anon_sym_initially] = ACTIONS(120), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(125), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [3] = { - [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(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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2276), + [sym_num_lit] = STATE(2276), + [sym_kwd_lit] = STATE(2276), + [sym_str_lit] = STATE(2276), + [sym_char_lit] = STATE(2276), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2276), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2276), + [sym_set_lit] = STATE(2276), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2276), + [sym_package_lit] = STATE(2276), + [sym_include_reader_macro] = STATE(2276), + [sym_complex_num_lit] = STATE(2276), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(131), + [sym_comment] = ACTIONS(131), + [anon_sym_POUND_] = ACTIONS(135), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(139), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(141), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(139), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_POUND_CARET] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(110), - [anon_sym_cl] = ACTIONS(163), + [sym_fancy_literal] = ACTIONS(139), + [anon_sym_cl] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(164), [aux_sym_accumulation_verb_token1] = ACTIONS(166), [anon_sym_for] = ACTIONS(166), [anon_sym_and] = ACTIONS(166), @@ -10240,204 +10777,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(169), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_COLON_COLON] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_nil_lit] = ACTIONS(63), - [aux_sym_sym_lit_token1] = ACTIONS(73), - [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), - [anon_sym_POUND_QMARK_AT] = ACTIONS(79), - [anon_sym_POUND_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_COMMA_AT] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(89), + [sym__gap] = STATE(15), + [sym_dis_expr] = STATE(15), + [sym__form] = STATE(14), + [sym_num_lit] = STATE(14), + [sym_kwd_lit] = STATE(14), + [sym_str_lit] = STATE(14), + [sym_char_lit] = STATE(14), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(14), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(14), + [sym_set_lit] = STATE(14), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(14), + [sym_splicing_read_cond_lit] = STATE(14), + [sym_var_quoting_lit] = STATE(14), + [sym_quoting_lit] = STATE(14), + [sym_syn_quoting_lit] = STATE(14), + [sym_unquote_splicing_lit] = STATE(14), + [sym_unquoting_lit] = STATE(14), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(14), + [sym_package_lit] = STATE(14), + [sym_include_reader_macro] = STATE(14), + [sym_complex_num_lit] = STATE(14), + [aux_sym_dis_expr_repeat1] = STATE(15), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(171), + [sym_comment] = ACTIONS(171), + [anon_sym_POUND_] = ACTIONS(174), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(179), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(179), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(192), + [anon_sym_POUND_CARET] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_RPAREN] = ACTIONS(201), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(63), - [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), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), - [anon_sym_POUNDc] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(179), + [anon_sym_cl] = ACTIONS(219), + [anon_sym_EQ] = ACTIONS(222), + [aux_sym_accumulation_verb_token1] = ACTIONS(224), + [anon_sym_for] = ACTIONS(224), + [anon_sym_and] = ACTIONS(224), + [anon_sym_as] = ACTIONS(224), + [anon_sym_with] = ACTIONS(224), + [anon_sym_do] = ACTIONS(224), + [anon_sym_while] = ACTIONS(224), + [anon_sym_until] = ACTIONS(224), + [anon_sym_repeat] = ACTIONS(224), + [anon_sym_when] = ACTIONS(224), + [anon_sym_if] = ACTIONS(224), + [anon_sym_unless] = ACTIONS(224), + [anon_sym_always] = ACTIONS(224), + [anon_sym_thereis] = ACTIONS(224), + [anon_sym_never] = ACTIONS(224), + [anon_sym_else] = ACTIONS(224), + [anon_sym_finally] = ACTIONS(224), + [anon_sym_return] = ACTIONS(224), + [anon_sym_initially] = ACTIONS(224), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(228), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [5] = { - [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), - [anon_sym_POUND] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(192), - [aux_sym_num_lit_token1] = ACTIONS(194), - [anon_sym_COLON] = ACTIONS(196), - [anon_sym_COLON_COLON] = ACTIONS(198), - [anon_sym_DQUOTE] = ACTIONS(200), - [sym_nil_lit] = ACTIONS(192), - [aux_sym_sym_lit_token1] = ACTIONS(202), - [anon_sym_CARET] = ACTIONS(204), - [anon_sym_POUND_CARET] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(213), - [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(192), - [anon_sym_cl] = ACTIONS(231), - [aux_sym_accumulation_verb_token1] = ACTIONS(234), - [anon_sym_for] = ACTIONS(234), - [anon_sym_and] = ACTIONS(234), - [anon_sym_as] = ACTIONS(234), - [anon_sym_with] = ACTIONS(234), - [anon_sym_do] = ACTIONS(234), - [anon_sym_while] = ACTIONS(234), - [anon_sym_until] = ACTIONS(234), - [anon_sym_repeat] = ACTIONS(234), - [anon_sym_when] = ACTIONS(234), - [anon_sym_if] = ACTIONS(234), - [anon_sym_unless] = ACTIONS(234), - [anon_sym_always] = ACTIONS(234), - [anon_sym_thereis] = ACTIONS(234), - [anon_sym_never] = ACTIONS(234), - [anon_sym_else] = ACTIONS(234), - [anon_sym_finally] = ACTIONS(234), - [anon_sym_return] = ACTIONS(234), - [anon_sym_initially] = ACTIONS(234), - [anon_sym_POUNDP] = ACTIONS(236), - [anon_sym_POUNDp] = ACTIONS(236), - [sym_self_referential_reader_macro] = ACTIONS(238), - [anon_sym_POUND_PLUS] = ACTIONS(240), - [anon_sym_POUND_DASH] = ACTIONS(240), - [anon_sym_POUNDC] = ACTIONS(242), - [anon_sym_POUNDc] = ACTIONS(242), - }, - [6] = { - [sym__gap] = STATE(216), - [sym_dis_expr] = STATE(216), + [sym__gap] = STATE(13), + [sym_dis_expr] = STATE(13), [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_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), [sym_list_lit] = STATE(12), - [sym__bare_list_lit] = STATE(1073), + [sym__bare_list_lit] = STATE(1070), [sym_vec_lit] = STATE(12), [sym_set_lit] = STATE(12), - [sym__bare_set_lit] = STATE(1072), + [sym__bare_set_lit] = STATE(1069), [sym_read_cond_lit] = STATE(12), [sym_splicing_read_cond_lit] = STATE(12), [sym_var_quoting_lit] = STATE(12), @@ -10445,2960 +10896,23614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), [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), - [anon_sym_POUND] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(250), - [aux_sym_num_lit_token1] = ACTIONS(194), - [anon_sym_COLON] = ACTIONS(196), - [anon_sym_COLON_COLON] = ACTIONS(198), - [anon_sym_DQUOTE] = ACTIONS(200), - [sym_nil_lit] = ACTIONS(250), - [aux_sym_sym_lit_token1] = ACTIONS(202), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_POUND_CARET] = ACTIONS(255), - [anon_sym_LPAREN] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(261), - [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), + [aux_sym_dis_expr_repeat1] = STATE(13), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(234), + [sym_comment] = ACTIONS(234), + [anon_sym_POUND_] = ACTIONS(174), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(237), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(239), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(237), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(192), + [anon_sym_POUND_CARET] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_RPAREN] = ACTIONS(201), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(237), + [anon_sym_cl] = ACTIONS(242), + [anon_sym_EQ] = ACTIONS(245), + [aux_sym_accumulation_verb_token1] = ACTIONS(224), + [anon_sym_for] = ACTIONS(224), + [anon_sym_and] = ACTIONS(224), + [anon_sym_as] = ACTIONS(224), + [anon_sym_with] = ACTIONS(224), + [anon_sym_do] = ACTIONS(224), + [anon_sym_while] = ACTIONS(224), + [anon_sym_until] = ACTIONS(224), + [anon_sym_repeat] = ACTIONS(224), + [anon_sym_when] = ACTIONS(224), + [anon_sym_if] = ACTIONS(224), + [anon_sym_unless] = ACTIONS(224), + [anon_sym_always] = ACTIONS(224), + [anon_sym_thereis] = ACTIONS(224), + [anon_sym_never] = ACTIONS(224), + [anon_sym_else] = ACTIONS(224), + [anon_sym_finally] = ACTIONS(224), + [anon_sym_return] = ACTIONS(224), + [anon_sym_initially] = ACTIONS(224), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(247), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), + }, + [6] = { + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(11), + [sym_num_lit] = STATE(11), + [sym_kwd_lit] = STATE(11), + [sym_str_lit] = STATE(11), + [sym_char_lit] = STATE(11), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(11), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(11), + [sym_set_lit] = STATE(11), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(11), + [sym_splicing_read_cond_lit] = STATE(11), + [sym_var_quoting_lit] = STATE(11), + [sym_quoting_lit] = STATE(11), + [sym_syn_quoting_lit] = STATE(11), + [sym_unquote_splicing_lit] = STATE(11), + [sym_unquoting_lit] = STATE(11), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(11), + [sym_package_lit] = STATE(11), + [sym_include_reader_macro] = STATE(11), + [sym_complex_num_lit] = STATE(11), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(249), + [sym_comment] = ACTIONS(249), + [anon_sym_POUND_] = ACTIONS(252), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(255), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(257), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(255), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_POUND_CARET] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(250), - [anon_sym_cl] = ACTIONS(263), - [aux_sym_accumulation_verb_token1] = ACTIONS(266), - [anon_sym_for] = ACTIONS(266), - [anon_sym_and] = ACTIONS(266), - [anon_sym_as] = ACTIONS(266), - [anon_sym_with] = ACTIONS(266), - [anon_sym_do] = ACTIONS(266), - [anon_sym_while] = ACTIONS(266), - [anon_sym_until] = ACTIONS(266), - [anon_sym_repeat] = ACTIONS(266), - [anon_sym_when] = ACTIONS(266), - [anon_sym_if] = ACTIONS(266), - [anon_sym_unless] = ACTIONS(266), - [anon_sym_always] = ACTIONS(266), - [anon_sym_thereis] = ACTIONS(266), - [anon_sym_never] = ACTIONS(266), - [anon_sym_else] = ACTIONS(266), - [anon_sym_finally] = ACTIONS(266), - [anon_sym_return] = ACTIONS(266), - [anon_sym_initially] = ACTIONS(266), - [anon_sym_POUNDP] = ACTIONS(236), - [anon_sym_POUNDp] = ACTIONS(236), - [sym_self_referential_reader_macro] = ACTIONS(268), - [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(255), + [anon_sym_cl] = ACTIONS(271), + [anon_sym_EQ] = ACTIONS(274), + [aux_sym_accumulation_verb_token1] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_as] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_until] = ACTIONS(276), + [anon_sym_repeat] = ACTIONS(276), + [anon_sym_when] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_unless] = ACTIONS(276), + [anon_sym_always] = ACTIONS(276), + [anon_sym_thereis] = ACTIONS(276), + [anon_sym_never] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_finally] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_initially] = ACTIONS(276), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(278), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [7] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(276), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(276), - [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_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__gap] = STATE(10), + [sym_dis_expr] = STATE(10), + [sym__form] = STATE(2503), + [sym_num_lit] = STATE(2503), + [sym_kwd_lit] = STATE(2503), + [sym_str_lit] = STATE(2503), + [sym_char_lit] = STATE(2503), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2503), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2503), + [sym_set_lit] = STATE(2503), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2503), + [sym_splicing_read_cond_lit] = STATE(2503), + [sym_var_quoting_lit] = STATE(2503), + [sym_quoting_lit] = STATE(2503), + [sym_syn_quoting_lit] = STATE(2503), + [sym_unquote_splicing_lit] = STATE(2503), + [sym_unquoting_lit] = STATE(2503), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2503), + [sym_package_lit] = STATE(2503), + [sym_include_reader_macro] = STATE(2503), + [sym_complex_num_lit] = STATE(2503), + [aux_sym_dis_expr_repeat1] = STATE(10), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(280), + [sym_comment] = ACTIONS(280), + [anon_sym_POUND_] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(288), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(290), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(288), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(294), + [anon_sym_POUND_CARET] = ACTIONS(298), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(276), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(314), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(288), + [anon_sym_cl] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(313), + [aux_sym_accumulation_verb_token1] = ACTIONS(315), + [anon_sym_for] = ACTIONS(315), + [anon_sym_and] = ACTIONS(315), + [anon_sym_as] = ACTIONS(315), + [anon_sym_with] = ACTIONS(315), + [anon_sym_do] = ACTIONS(315), + [anon_sym_while] = ACTIONS(315), + [anon_sym_until] = ACTIONS(315), + [anon_sym_repeat] = ACTIONS(315), + [anon_sym_when] = ACTIONS(315), + [anon_sym_if] = ACTIONS(315), + [anon_sym_unless] = ACTIONS(315), + [anon_sym_always] = ACTIONS(315), + [anon_sym_thereis] = ACTIONS(315), + [anon_sym_never] = ACTIONS(315), + [anon_sym_else] = ACTIONS(315), + [anon_sym_finally] = ACTIONS(315), + [anon_sym_return] = ACTIONS(315), + [anon_sym_initially] = ACTIONS(315), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(318), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [8] = { [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), + [sym__form] = STATE(2510), + [sym_num_lit] = STATE(2510), + [sym_kwd_lit] = STATE(2510), + [sym_str_lit] = STATE(2510), + [sym_char_lit] = STATE(2510), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2510), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2510), + [sym_set_lit] = STATE(2510), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2510), + [sym_splicing_read_cond_lit] = STATE(2510), + [sym_var_quoting_lit] = STATE(2510), + [sym_quoting_lit] = STATE(2510), + [sym_syn_quoting_lit] = STATE(2510), + [sym_unquote_splicing_lit] = STATE(2510), + [sym_unquoting_lit] = STATE(2510), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2510), + [sym_package_lit] = STATE(2510), + [sym_include_reader_macro] = STATE(2510), + [sym_complex_num_lit] = STATE(2510), [aux_sym_dis_expr_repeat1] = STATE(18), - [aux_sym_list_lit_repeat1] = STATE(2165), - [aux_sym_for_clause_repeat1] = STATE(951), + [aux_sym_list_lit_repeat1] = STATE(2834), [sym__ws] = ACTIONS(320), [sym_comment] = ACTIONS(320), - [anon_sym_POUND_] = ACTIONS(272), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(322), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(322), - [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_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_POUND_] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(324), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(326), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(324), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(294), + [anon_sym_POUND_CARET] = ACTIONS(298), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(322), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(324), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(324), + [anon_sym_cl] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(334), + [aux_sym_accumulation_verb_token1] = ACTIONS(315), + [anon_sym_for] = ACTIONS(315), + [anon_sym_and] = ACTIONS(315), + [anon_sym_as] = ACTIONS(315), + [anon_sym_with] = ACTIONS(315), + [anon_sym_do] = ACTIONS(315), + [anon_sym_while] = ACTIONS(315), + [anon_sym_until] = ACTIONS(315), + [anon_sym_repeat] = ACTIONS(315), + [anon_sym_when] = ACTIONS(315), + [anon_sym_if] = ACTIONS(315), + [anon_sym_unless] = ACTIONS(315), + [anon_sym_always] = ACTIONS(315), + [anon_sym_thereis] = ACTIONS(315), + [anon_sym_never] = ACTIONS(315), + [anon_sym_else] = ACTIONS(315), + [anon_sym_finally] = ACTIONS(315), + [anon_sym_return] = ACTIONS(315), + [anon_sym_initially] = ACTIONS(315), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(336), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [9] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(328), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(328), - [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_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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(19), + [sym_num_lit] = STATE(19), + [sym_kwd_lit] = STATE(19), + [sym_str_lit] = STATE(19), + [sym_char_lit] = STATE(19), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(19), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(19), + [sym_set_lit] = STATE(19), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(19), + [sym_splicing_read_cond_lit] = STATE(19), + [sym_var_quoting_lit] = STATE(19), + [sym_quoting_lit] = STATE(19), + [sym_syn_quoting_lit] = STATE(19), + [sym_unquote_splicing_lit] = STATE(19), + [sym_unquoting_lit] = STATE(19), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(19), + [sym_package_lit] = STATE(19), + [sym_include_reader_macro] = STATE(19), + [sym_complex_num_lit] = STATE(19), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(249), + [sym_comment] = ACTIONS(249), + [anon_sym_POUND_] = ACTIONS(252), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(338), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(340), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(338), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_POUND_CARET] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(266), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(328), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(330), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(338), + [anon_sym_cl] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(346), + [aux_sym_accumulation_verb_token1] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_as] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_until] = ACTIONS(276), + [anon_sym_repeat] = ACTIONS(276), + [anon_sym_when] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_unless] = ACTIONS(276), + [anon_sym_always] = ACTIONS(276), + [anon_sym_thereis] = ACTIONS(276), + [anon_sym_never] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_finally] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_initially] = ACTIONS(276), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(348), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [10] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(334), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(334), - [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_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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2397), + [sym_num_lit] = STATE(2397), + [sym_kwd_lit] = STATE(2397), + [sym_str_lit] = STATE(2397), + [sym_char_lit] = STATE(2397), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2397), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2397), + [sym_set_lit] = STATE(2397), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2397), + [sym_splicing_read_cond_lit] = STATE(2397), + [sym_var_quoting_lit] = STATE(2397), + [sym_quoting_lit] = STATE(2397), + [sym_syn_quoting_lit] = STATE(2397), + [sym_unquote_splicing_lit] = STATE(2397), + [sym_unquoting_lit] = STATE(2397), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2397), + [sym_package_lit] = STATE(2397), + [sym_include_reader_macro] = STATE(2397), + [sym_complex_num_lit] = STATE(2397), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(354), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(358), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(360), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(358), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_POUND_CARET] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(376), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(334), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(336), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(358), + [anon_sym_cl] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(383), + [aux_sym_accumulation_verb_token1] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_with] = ACTIONS(385), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_until] = ACTIONS(385), + [anon_sym_repeat] = ACTIONS(385), + [anon_sym_when] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_unless] = ACTIONS(385), + [anon_sym_always] = ACTIONS(385), + [anon_sym_thereis] = ACTIONS(385), + [anon_sym_never] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_initially] = ACTIONS(385), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(388), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [11] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(340), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(340), - [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_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__gap] = STATE(2), + [sym_dis_expr] = STATE(2), + [sym__form] = STATE(2392), + [sym_num_lit] = STATE(2392), + [sym_kwd_lit] = STATE(2392), + [sym_str_lit] = STATE(2392), + [sym_char_lit] = STATE(2392), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2392), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2392), + [sym_set_lit] = STATE(2392), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2392), + [sym_splicing_read_cond_lit] = STATE(2392), + [sym_var_quoting_lit] = STATE(2392), + [sym_quoting_lit] = STATE(2392), + [sym_syn_quoting_lit] = STATE(2392), + [sym_unquote_splicing_lit] = STATE(2392), + [sym_unquoting_lit] = STATE(2392), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2392), + [sym_package_lit] = STATE(2392), + [sym_include_reader_macro] = STATE(2392), + [sym_complex_num_lit] = STATE(2392), + [aux_sym_dis_expr_repeat1] = STATE(2), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(390), + [sym_comment] = ACTIONS(390), + [anon_sym_POUND_] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(398), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(398), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_POUND_CARET] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(340), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(342), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(398), + [anon_sym_cl] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(423), + [aux_sym_accumulation_verb_token1] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_and] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_with] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_until] = ACTIONS(425), + [anon_sym_repeat] = ACTIONS(425), + [anon_sym_when] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_unless] = ACTIONS(425), + [anon_sym_always] = ACTIONS(425), + [anon_sym_thereis] = ACTIONS(425), + [anon_sym_never] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_finally] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_initially] = ACTIONS(425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(428), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [12] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(346), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(346), - [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_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__gap] = STATE(3), + [sym_dis_expr] = STATE(3), + [sym__form] = STATE(2387), + [sym_num_lit] = STATE(2387), + [sym_kwd_lit] = STATE(2387), + [sym_str_lit] = STATE(2387), + [sym_char_lit] = STATE(2387), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2387), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2387), + [sym_set_lit] = STATE(2387), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2387), + [sym_splicing_read_cond_lit] = STATE(2387), + [sym_var_quoting_lit] = STATE(2387), + [sym_quoting_lit] = STATE(2387), + [sym_syn_quoting_lit] = STATE(2387), + [sym_unquote_splicing_lit] = STATE(2387), + [sym_unquoting_lit] = STATE(2387), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2387), + [sym_package_lit] = STATE(2387), + [sym_include_reader_macro] = STATE(2387), + [sym_complex_num_lit] = STATE(2387), + [aux_sym_dis_expr_repeat1] = STATE(3), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(430), + [sym_comment] = ACTIONS(430), + [anon_sym_POUND_] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(438), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(440), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(438), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_POUND_CARET] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RPAREN] = ACTIONS(456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(346), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(348), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(438), + [anon_sym_cl] = ACTIONS(459), + [anon_sym_EQ] = ACTIONS(463), + [aux_sym_accumulation_verb_token1] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_and] = ACTIONS(465), + [anon_sym_as] = ACTIONS(465), + [anon_sym_with] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [anon_sym_until] = ACTIONS(465), + [anon_sym_repeat] = ACTIONS(465), + [anon_sym_when] = ACTIONS(465), + [anon_sym_if] = ACTIONS(465), + [anon_sym_unless] = ACTIONS(465), + [anon_sym_always] = ACTIONS(465), + [anon_sym_thereis] = ACTIONS(465), + [anon_sym_never] = ACTIONS(465), + [anon_sym_else] = ACTIONS(465), + [anon_sym_finally] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_initially] = ACTIONS(465), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(468), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [13] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(352), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(352), - [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_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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(23), + [sym_num_lit] = STATE(23), + [sym_kwd_lit] = STATE(23), + [sym_str_lit] = STATE(23), + [sym_char_lit] = STATE(23), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(23), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(23), + [sym_set_lit] = STATE(23), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(23), + [sym_splicing_read_cond_lit] = STATE(23), + [sym_var_quoting_lit] = STATE(23), + [sym_quoting_lit] = STATE(23), + [sym_syn_quoting_lit] = STATE(23), + [sym_unquote_splicing_lit] = STATE(23), + [sym_unquoting_lit] = STATE(23), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(23), + [sym_package_lit] = STATE(23), + [sym_include_reader_macro] = STATE(23), + [sym_complex_num_lit] = STATE(23), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(470), + [sym_comment] = ACTIONS(470), + [anon_sym_POUND_] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(476), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(476), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_POUND_CARET] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(352), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(354), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(476), + [anon_sym_cl] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(495), + [aux_sym_accumulation_verb_token1] = ACTIONS(497), + [anon_sym_for] = ACTIONS(497), + [anon_sym_and] = ACTIONS(497), + [anon_sym_as] = ACTIONS(497), + [anon_sym_with] = ACTIONS(497), + [anon_sym_do] = ACTIONS(497), + [anon_sym_while] = ACTIONS(497), + [anon_sym_until] = ACTIONS(497), + [anon_sym_repeat] = ACTIONS(497), + [anon_sym_when] = ACTIONS(497), + [anon_sym_if] = ACTIONS(497), + [anon_sym_unless] = ACTIONS(497), + [anon_sym_always] = ACTIONS(497), + [anon_sym_thereis] = ACTIONS(497), + [anon_sym_never] = ACTIONS(497), + [anon_sym_else] = ACTIONS(497), + [anon_sym_finally] = ACTIONS(497), + [anon_sym_return] = ACTIONS(497), + [anon_sym_initially] = ACTIONS(497), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(499), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [14] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(356), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(356), - [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_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__gap] = STATE(27), + [sym_dis_expr] = STATE(27), + [sym__form] = STATE(2378), + [sym_num_lit] = STATE(2378), + [sym_kwd_lit] = STATE(2378), + [sym_str_lit] = STATE(2378), + [sym_char_lit] = STATE(2378), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2378), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2378), + [sym_set_lit] = STATE(2378), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2378), + [sym_splicing_read_cond_lit] = STATE(2378), + [sym_var_quoting_lit] = STATE(2378), + [sym_quoting_lit] = STATE(2378), + [sym_syn_quoting_lit] = STATE(2378), + [sym_unquote_splicing_lit] = STATE(2378), + [sym_unquoting_lit] = STATE(2378), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2378), + [sym_package_lit] = STATE(2378), + [sym_include_reader_macro] = STATE(2378), + [sym_complex_num_lit] = STATE(2378), + [aux_sym_dis_expr_repeat1] = STATE(27), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(501), + [sym_comment] = ACTIONS(501), + [anon_sym_POUND_] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(505), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(507), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(505), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_POUND_CARET] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RPAREN] = ACTIONS(456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(356), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(358), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(505), + [anon_sym_cl] = ACTIONS(511), + [anon_sym_EQ] = ACTIONS(515), + [aux_sym_accumulation_verb_token1] = ACTIONS(465), + [anon_sym_for] = ACTIONS(465), + [anon_sym_and] = ACTIONS(465), + [anon_sym_as] = ACTIONS(465), + [anon_sym_with] = ACTIONS(465), + [anon_sym_do] = ACTIONS(465), + [anon_sym_while] = ACTIONS(465), + [anon_sym_until] = ACTIONS(465), + [anon_sym_repeat] = ACTIONS(465), + [anon_sym_when] = ACTIONS(465), + [anon_sym_if] = ACTIONS(465), + [anon_sym_unless] = ACTIONS(465), + [anon_sym_always] = ACTIONS(465), + [anon_sym_thereis] = ACTIONS(465), + [anon_sym_never] = ACTIONS(465), + [anon_sym_else] = ACTIONS(465), + [anon_sym_finally] = ACTIONS(465), + [anon_sym_return] = ACTIONS(465), + [anon_sym_initially] = ACTIONS(465), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(517), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [15] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(360), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(360), - [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_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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(28), + [sym_num_lit] = STATE(28), + [sym_kwd_lit] = STATE(28), + [sym_str_lit] = STATE(28), + [sym_char_lit] = STATE(28), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(28), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(28), + [sym_set_lit] = STATE(28), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(28), + [sym_splicing_read_cond_lit] = STATE(28), + [sym_var_quoting_lit] = STATE(28), + [sym_quoting_lit] = STATE(28), + [sym_syn_quoting_lit] = STATE(28), + [sym_unquote_splicing_lit] = STATE(28), + [sym_unquoting_lit] = STATE(28), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(28), + [sym_package_lit] = STATE(28), + [sym_include_reader_macro] = STATE(28), + [sym_complex_num_lit] = STATE(28), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(470), + [sym_comment] = ACTIONS(470), + [anon_sym_POUND_] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(519), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(519), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_POUND_CARET] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(360), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(362), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(519), + [anon_sym_cl] = ACTIONS(524), + [anon_sym_EQ] = ACTIONS(527), + [aux_sym_accumulation_verb_token1] = ACTIONS(497), + [anon_sym_for] = ACTIONS(497), + [anon_sym_and] = ACTIONS(497), + [anon_sym_as] = ACTIONS(497), + [anon_sym_with] = ACTIONS(497), + [anon_sym_do] = ACTIONS(497), + [anon_sym_while] = ACTIONS(497), + [anon_sym_until] = ACTIONS(497), + [anon_sym_repeat] = ACTIONS(497), + [anon_sym_when] = ACTIONS(497), + [anon_sym_if] = ACTIONS(497), + [anon_sym_unless] = ACTIONS(497), + [anon_sym_always] = ACTIONS(497), + [anon_sym_thereis] = ACTIONS(497), + [anon_sym_never] = ACTIONS(497), + [anon_sym_else] = ACTIONS(497), + [anon_sym_finally] = ACTIONS(497), + [anon_sym_return] = ACTIONS(497), + [anon_sym_initially] = ACTIONS(497), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(529), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [16] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(364), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(364), - [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_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__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(16), + [sym__ws] = ACTIONS(531), + [sym_comment] = ACTIONS(531), + [anon_sym_POUND_] = ACTIONS(534), + [anon_sym_POUND] = ACTIONS(537), + [anon_sym_DOT] = ACTIONS(540), + [aux_sym_num_lit_token1] = ACTIONS(543), + [anon_sym_COLON] = ACTIONS(546), + [anon_sym_COLON_COLON] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(552), + [sym_nil_lit] = ACTIONS(540), + [aux_sym_sym_lit_token1] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_POUND_CARET] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_POUND0A] = ACTIONS(569), + [anon_sym_POUND0a] = ACTIONS(569), + [anon_sym_POUND_QMARK] = ACTIONS(572), + [anon_sym_POUND_QMARK_AT] = ACTIONS(575), + [anon_sym_POUND_SQUOTE] = ACTIONS(578), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_BQUOTE] = ACTIONS(584), + [anon_sym_COMMA_AT] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(590), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(364), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(366), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(540), + [anon_sym_cl] = ACTIONS(593), + [aux_sym_accumulation_verb_token1] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_and] = ACTIONS(596), + [anon_sym_as] = ACTIONS(596), + [anon_sym_with] = ACTIONS(596), + [anon_sym_do] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_until] = ACTIONS(596), + [anon_sym_repeat] = ACTIONS(596), + [anon_sym_when] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_unless] = ACTIONS(596), + [anon_sym_always] = ACTIONS(596), + [anon_sym_thereis] = ACTIONS(596), + [anon_sym_never] = ACTIONS(596), + [anon_sym_else] = ACTIONS(596), + [anon_sym_finally] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_initially] = ACTIONS(596), + [anon_sym_POUNDP] = ACTIONS(598), + [anon_sym_POUNDp] = ACTIONS(598), + [sym_self_referential_reader_macro] = ACTIONS(601), + [anon_sym_POUND_PLUS] = ACTIONS(604), + [anon_sym_POUND_DASH] = ACTIONS(604), + [anon_sym_POUNDC] = ACTIONS(607), + [anon_sym_POUNDc] = ACTIONS(607), }, [17] = { - [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), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(368), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(368), - [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_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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2356), + [sym_num_lit] = STATE(2356), + [sym_kwd_lit] = STATE(2356), + [sym_str_lit] = STATE(2356), + [sym_char_lit] = STATE(2356), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2356), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2356), + [sym_set_lit] = STATE(2356), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2356), + [sym_splicing_read_cond_lit] = STATE(2356), + [sym_var_quoting_lit] = STATE(2356), + [sym_quoting_lit] = STATE(2356), + [sym_syn_quoting_lit] = STATE(2356), + [sym_unquote_splicing_lit] = STATE(2356), + [sym_unquoting_lit] = STATE(2356), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2356), + [sym_package_lit] = STATE(2356), + [sym_include_reader_macro] = STATE(2356), + [sym_complex_num_lit] = STATE(2356), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(610), + [sym_comment] = ACTIONS(610), + [anon_sym_POUND_] = ACTIONS(614), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(618), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(620), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(618), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_POUND_CARET] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RPAREN] = ACTIONS(636), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(368), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(370), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(618), + [anon_sym_cl] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(643), + [aux_sym_accumulation_verb_token1] = ACTIONS(645), + [anon_sym_for] = ACTIONS(645), + [anon_sym_and] = ACTIONS(645), + [anon_sym_as] = ACTIONS(645), + [anon_sym_with] = ACTIONS(645), + [anon_sym_do] = ACTIONS(645), + [anon_sym_while] = ACTIONS(645), + [anon_sym_until] = ACTIONS(645), + [anon_sym_repeat] = ACTIONS(645), + [anon_sym_when] = ACTIONS(645), + [anon_sym_if] = ACTIONS(645), + [anon_sym_unless] = ACTIONS(645), + [anon_sym_always] = ACTIONS(645), + [anon_sym_thereis] = ACTIONS(645), + [anon_sym_never] = ACTIONS(645), + [anon_sym_else] = ACTIONS(645), + [anon_sym_finally] = ACTIONS(645), + [anon_sym_return] = ACTIONS(645), + [anon_sym_initially] = ACTIONS(645), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(648), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [18] = { - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2258), + [sym_num_lit] = STATE(2258), + [sym_kwd_lit] = STATE(2258), + [sym_str_lit] = STATE(2258), + [sym_char_lit] = STATE(2258), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2258), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2258), + [sym_set_lit] = STATE(2258), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2258), + [sym_splicing_read_cond_lit] = STATE(2258), + [sym_var_quoting_lit] = STATE(2258), + [sym_quoting_lit] = STATE(2258), + [sym_syn_quoting_lit] = STATE(2258), + [sym_unquote_splicing_lit] = STATE(2258), + [sym_unquoting_lit] = STATE(2258), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2258), + [sym_package_lit] = STATE(2258), + [sym_include_reader_macro] = STATE(2258), + [sym_complex_num_lit] = STATE(2258), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), [sym__ws] = ACTIONS(350), [sym_comment] = ACTIONS(350), - [anon_sym_POUND_] = ACTIONS(272), - [anon_sym_POUND] = ACTIONS(274), - [anon_sym_DOT] = ACTIONS(372), - [aux_sym_num_lit_token1] = ACTIONS(278), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_COLON_COLON] = ACTIONS(282), - [anon_sym_DQUOTE] = ACTIONS(284), - [sym_nil_lit] = ACTIONS(372), - [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_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_POUND_] = ACTIONS(354), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(650), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(652), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(650), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_POUND_CARET] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_RPAREN] = ACTIONS(376), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(372), - [anon_sym_cl] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_across] = ACTIONS(308), - [anon_sym_being] = ACTIONS(308), - [anon_sym_using] = ACTIONS(308), - [aux_sym_for_clause_word_token1] = ACTIONS(310), - [anon_sym_below] = ACTIONS(308), - [anon_sym_above] = ACTIONS(308), - [anon_sym_from] = ACTIONS(308), - [anon_sym_to] = ACTIONS(308), - [anon_sym_upto] = ACTIONS(308), - [anon_sym_downto] = ACTIONS(308), - [anon_sym_downfrom] = ACTIONS(308), - [anon_sym_on] = ACTIONS(308), - [anon_sym_by] = ACTIONS(308), - [anon_sym_then] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_POUNDP] = ACTIONS(312), - [anon_sym_POUNDp] = ACTIONS(312), - [sym_self_referential_reader_macro] = ACTIONS(374), - [anon_sym_POUND_PLUS] = ACTIONS(316), - [anon_sym_POUND_DASH] = ACTIONS(316), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(650), + [anon_sym_cl] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(660), + [aux_sym_accumulation_verb_token1] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), + [anon_sym_with] = ACTIONS(385), + [anon_sym_do] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_until] = ACTIONS(385), + [anon_sym_repeat] = ACTIONS(385), + [anon_sym_when] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_unless] = ACTIONS(385), + [anon_sym_always] = ACTIONS(385), + [anon_sym_thereis] = ACTIONS(385), + [anon_sym_never] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_finally] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_initially] = ACTIONS(385), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(662), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [19] = { - [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), - [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(382), - [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__gap] = STATE(34), + [sym_dis_expr] = STATE(34), + [sym__form] = STATE(2342), + [sym_num_lit] = STATE(2342), + [sym_kwd_lit] = STATE(2342), + [sym_str_lit] = STATE(2342), + [sym_char_lit] = STATE(2342), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2342), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2342), + [sym_set_lit] = STATE(2342), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2342), + [sym_splicing_read_cond_lit] = STATE(2342), + [sym_var_quoting_lit] = STATE(2342), + [sym_quoting_lit] = STATE(2342), + [sym_syn_quoting_lit] = STATE(2342), + [sym_unquote_splicing_lit] = STATE(2342), + [sym_unquoting_lit] = STATE(2342), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2342), + [sym_package_lit] = STATE(2342), + [sym_include_reader_macro] = STATE(2342), + [sym_complex_num_lit] = STATE(2342), + [aux_sym_dis_expr_repeat1] = STATE(34), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(664), + [sym_comment] = ACTIONS(664), + [anon_sym_POUND_] = ACTIONS(394), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(668), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(670), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(668), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_POUND_CARET] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(412), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(386), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(668), + [anon_sym_cl] = ACTIONS(674), + [anon_sym_EQ] = ACTIONS(678), + [aux_sym_accumulation_verb_token1] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_and] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_with] = ACTIONS(425), + [anon_sym_do] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_until] = ACTIONS(425), + [anon_sym_repeat] = ACTIONS(425), + [anon_sym_when] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_unless] = ACTIONS(425), + [anon_sym_always] = ACTIONS(425), + [anon_sym_thereis] = ACTIONS(425), + [anon_sym_never] = ACTIONS(425), + [anon_sym_else] = ACTIONS(425), + [anon_sym_finally] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_initially] = ACTIONS(425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(680), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [20] = { - [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), - [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(396), - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2134), + [sym_num_lit] = STATE(2134), + [sym_kwd_lit] = STATE(2134), + [sym_str_lit] = STATE(2134), + [sym_char_lit] = STATE(2134), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2134), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2134), + [sym_set_lit] = STATE(2134), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2134), + [sym_splicing_read_cond_lit] = STATE(2134), + [sym_var_quoting_lit] = STATE(2134), + [sym_quoting_lit] = STATE(2134), + [sym_syn_quoting_lit] = STATE(2134), + [sym_unquote_splicing_lit] = STATE(2134), + [sym_unquoting_lit] = STATE(2134), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2134), + [sym_package_lit] = STATE(2134), + [sym_include_reader_macro] = STATE(2134), + [sym_complex_num_lit] = STATE(2134), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(682), + [sym_comment] = ACTIONS(682), + [anon_sym_POUND_] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(690), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(690), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(696), + [anon_sym_POUND_CARET] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(398), - [anon_sym_loop] = ACTIONS(400), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(690), + [anon_sym_cl] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(715), + [aux_sym_accumulation_verb_token1] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_as] = ACTIONS(717), + [anon_sym_with] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_until] = ACTIONS(717), + [anon_sym_repeat] = ACTIONS(717), + [anon_sym_when] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_unless] = ACTIONS(717), + [anon_sym_always] = ACTIONS(717), + [anon_sym_thereis] = ACTIONS(717), + [anon_sym_never] = ACTIONS(717), + [anon_sym_else] = ACTIONS(717), + [anon_sym_finally] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_initially] = ACTIONS(717), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(720), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [21] = { - [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), - [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(404), - [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__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(16), + [sym__ws] = ACTIONS(722), + [sym_comment] = ACTIONS(722), + [anon_sym_POUND_] = ACTIONS(722), + [anon_sym_POUND] = 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), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(722), + [anon_sym_POUND_CARET] = ACTIONS(722), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(406), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(730), + [aux_sym_accumulation_verb_token1] = ACTIONS(730), + [anon_sym_for] = ACTIONS(730), + [anon_sym_and] = ACTIONS(730), + [anon_sym_as] = ACTIONS(730), + [anon_sym_with] = ACTIONS(730), + [anon_sym_do] = ACTIONS(730), + [anon_sym_while] = ACTIONS(730), + [anon_sym_until] = ACTIONS(730), + [anon_sym_repeat] = ACTIONS(730), + [anon_sym_when] = ACTIONS(730), + [anon_sym_if] = ACTIONS(730), + [anon_sym_unless] = ACTIONS(730), + [anon_sym_always] = ACTIONS(730), + [anon_sym_thereis] = ACTIONS(730), + [anon_sym_never] = ACTIONS(730), + [anon_sym_else] = ACTIONS(730), + [anon_sym_finally] = ACTIONS(730), + [anon_sym_return] = ACTIONS(730), + [anon_sym_initially] = ACTIONS(730), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), }, [22] = { - [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), - [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(412), - [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__gap] = STATE(30), + [sym_dis_expr] = STATE(30), + [sym__form] = STATE(29), + [sym_num_lit] = STATE(29), + [sym_kwd_lit] = STATE(29), + [sym_str_lit] = STATE(29), + [sym_char_lit] = STATE(29), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(29), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(29), + [sym_set_lit] = STATE(29), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(29), + [sym_splicing_read_cond_lit] = STATE(29), + [sym_var_quoting_lit] = STATE(29), + [sym_quoting_lit] = STATE(29), + [sym_syn_quoting_lit] = STATE(29), + [sym_unquote_splicing_lit] = STATE(29), + [sym_unquoting_lit] = STATE(29), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(29), + [sym_package_lit] = STATE(29), + [sym_include_reader_macro] = STATE(29), + [sym_complex_num_lit] = STATE(29), + [aux_sym_dis_expr_repeat1] = STATE(30), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(762), + [sym_comment] = ACTIONS(762), + [anon_sym_POUND_] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(768), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(770), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(768), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym_POUND_CARET] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(414), - [anon_sym_loop] = ACTIONS(416), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(768), + [anon_sym_cl] = ACTIONS(784), + [anon_sym_EQ] = ACTIONS(787), + [aux_sym_accumulation_verb_token1] = ACTIONS(789), + [anon_sym_for] = ACTIONS(789), + [anon_sym_and] = ACTIONS(789), + [anon_sym_as] = ACTIONS(789), + [anon_sym_with] = ACTIONS(789), + [anon_sym_do] = ACTIONS(789), + [anon_sym_while] = ACTIONS(789), + [anon_sym_until] = ACTIONS(789), + [anon_sym_repeat] = ACTIONS(789), + [anon_sym_when] = ACTIONS(789), + [anon_sym_if] = ACTIONS(789), + [anon_sym_unless] = ACTIONS(789), + [anon_sym_always] = ACTIONS(789), + [anon_sym_thereis] = ACTIONS(789), + [anon_sym_never] = ACTIONS(789), + [anon_sym_else] = ACTIONS(789), + [anon_sym_finally] = ACTIONS(789), + [anon_sym_return] = ACTIONS(789), + [anon_sym_initially] = ACTIONS(789), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(791), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [23] = { - [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), - [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(420), - [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__gap] = STATE(35), + [sym_dis_expr] = STATE(35), + [sym__form] = STATE(2271), + [sym_num_lit] = STATE(2271), + [sym_kwd_lit] = STATE(2271), + [sym_str_lit] = STATE(2271), + [sym_char_lit] = STATE(2271), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2271), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2271), + [sym_set_lit] = STATE(2271), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2271), + [sym_splicing_read_cond_lit] = STATE(2271), + [sym_var_quoting_lit] = STATE(2271), + [sym_quoting_lit] = STATE(2271), + [sym_syn_quoting_lit] = STATE(2271), + [sym_unquote_splicing_lit] = STATE(2271), + [sym_unquoting_lit] = STATE(2271), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2271), + [sym_package_lit] = STATE(2271), + [sym_include_reader_macro] = STATE(2271), + [sym_complex_num_lit] = STATE(2271), + [aux_sym_dis_expr_repeat1] = STATE(35), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(793), + [sym_comment] = ACTIONS(793), + [anon_sym_POUND_] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(801), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(803), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(801), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym_POUND_CARET] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(801), + [anon_sym_cl] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(826), + [aux_sym_accumulation_verb_token1] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_and] = ACTIONS(828), + [anon_sym_as] = ACTIONS(828), + [anon_sym_with] = ACTIONS(828), + [anon_sym_do] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_until] = ACTIONS(828), + [anon_sym_repeat] = ACTIONS(828), + [anon_sym_when] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_unless] = ACTIONS(828), + [anon_sym_always] = ACTIONS(828), + [anon_sym_thereis] = ACTIONS(828), + [anon_sym_never] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_finally] = ACTIONS(828), + [anon_sym_return] = ACTIONS(828), + [anon_sym_initially] = ACTIONS(828), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(831), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [24] = { - [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), - [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(428), - [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__gap] = STATE(9), + [sym_dis_expr] = STATE(9), + [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(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(8), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(8), + [sym_set_lit] = STATE(8), + [sym__bare_set_lit] = STATE(1069), + [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(1070), + [sym_loop_macro] = STATE(1070), + [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(9), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(833), + [sym_comment] = ACTIONS(833), + [anon_sym_POUND_] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(839), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(839), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym_POUND_CARET] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(430), - [anon_sym_loop] = ACTIONS(432), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(839), + [anon_sym_cl] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(858), + [aux_sym_accumulation_verb_token1] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_and] = ACTIONS(860), + [anon_sym_as] = ACTIONS(860), + [anon_sym_with] = ACTIONS(860), + [anon_sym_do] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_until] = ACTIONS(860), + [anon_sym_repeat] = ACTIONS(860), + [anon_sym_when] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_unless] = ACTIONS(860), + [anon_sym_always] = ACTIONS(860), + [anon_sym_thereis] = ACTIONS(860), + [anon_sym_never] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_finally] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_initially] = ACTIONS(860), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(862), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [25] = { - [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), - [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(436), - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(31), + [sym_num_lit] = STATE(31), + [sym_kwd_lit] = STATE(31), + [sym_str_lit] = STATE(31), + [sym_char_lit] = STATE(31), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(31), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(31), + [sym_set_lit] = STATE(31), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(31), + [sym_splicing_read_cond_lit] = STATE(31), + [sym_var_quoting_lit] = STATE(31), + [sym_quoting_lit] = STATE(31), + [sym_syn_quoting_lit] = STATE(31), + [sym_unquote_splicing_lit] = STATE(31), + [sym_unquoting_lit] = STATE(31), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(31), + [sym_package_lit] = STATE(31), + [sym_include_reader_macro] = STATE(31), + [sym_complex_num_lit] = STATE(31), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(864), + [sym_comment] = ACTIONS(864), + [anon_sym_POUND_] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(870), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(870), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_POUND_CARET] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(438), - [anon_sym_loop] = ACTIONS(440), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(870), + [anon_sym_cl] = ACTIONS(886), + [anon_sym_EQ] = ACTIONS(889), + [aux_sym_accumulation_verb_token1] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_and] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_with] = ACTIONS(891), + [anon_sym_do] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [anon_sym_until] = ACTIONS(891), + [anon_sym_repeat] = ACTIONS(891), + [anon_sym_when] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_unless] = ACTIONS(891), + [anon_sym_always] = ACTIONS(891), + [anon_sym_thereis] = ACTIONS(891), + [anon_sym_never] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_finally] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_initially] = ACTIONS(891), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(893), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [26] = { - [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), - [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(444), - [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__gap] = STATE(41), + [sym_dis_expr] = STATE(41), + [sym__form] = STATE(2430), + [sym_num_lit] = STATE(2430), + [sym_kwd_lit] = STATE(2430), + [sym_str_lit] = STATE(2430), + [sym_char_lit] = STATE(2430), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2430), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2430), + [sym_set_lit] = STATE(2430), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2430), + [sym_splicing_read_cond_lit] = STATE(2430), + [sym_var_quoting_lit] = STATE(2430), + [sym_quoting_lit] = STATE(2430), + [sym_syn_quoting_lit] = STATE(2430), + [sym_unquote_splicing_lit] = STATE(2430), + [sym_unquoting_lit] = STATE(2430), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2430), + [sym_package_lit] = STATE(2430), + [sym_include_reader_macro] = STATE(2430), + [sym_complex_num_lit] = STATE(2430), + [aux_sym_dis_expr_repeat1] = STATE(41), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(895), + [sym_comment] = ACTIONS(895), + [anon_sym_POUND_] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(903), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(903), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_POUND_CARET] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(446), - [anon_sym_loop] = ACTIONS(448), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(903), + [anon_sym_cl] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(928), + [aux_sym_accumulation_verb_token1] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_and] = ACTIONS(930), + [anon_sym_as] = ACTIONS(930), + [anon_sym_with] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [anon_sym_until] = ACTIONS(930), + [anon_sym_repeat] = ACTIONS(930), + [anon_sym_when] = ACTIONS(930), + [anon_sym_if] = ACTIONS(930), + [anon_sym_unless] = ACTIONS(930), + [anon_sym_always] = ACTIONS(930), + [anon_sym_thereis] = ACTIONS(930), + [anon_sym_never] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_finally] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_initially] = ACTIONS(930), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(933), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [27] = { - [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), - [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(452), - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2261), + [sym_num_lit] = STATE(2261), + [sym_kwd_lit] = STATE(2261), + [sym_str_lit] = STATE(2261), + [sym_char_lit] = STATE(2261), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2261), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2261), + [sym_set_lit] = STATE(2261), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2261), + [sym_splicing_read_cond_lit] = STATE(2261), + [sym_var_quoting_lit] = STATE(2261), + [sym_quoting_lit] = STATE(2261), + [sym_syn_quoting_lit] = STATE(2261), + [sym_unquote_splicing_lit] = STATE(2261), + [sym_unquoting_lit] = STATE(2261), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2261), + [sym_package_lit] = STATE(2261), + [sym_include_reader_macro] = STATE(2261), + [sym_complex_num_lit] = STATE(2261), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(131), + [sym_comment] = ACTIONS(131), + [anon_sym_POUND_] = ACTIONS(135), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(935), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(935), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(145), + [anon_sym_POUND_CARET] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(454), - [anon_sym_loop] = ACTIONS(456), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(935), + [anon_sym_cl] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(945), + [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(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(947), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [28] = { - [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), - [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(460), - [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__gap] = STATE(20), + [sym_dis_expr] = STATE(20), + [sym__form] = STATE(2256), + [sym_num_lit] = STATE(2256), + [sym_kwd_lit] = STATE(2256), + [sym_str_lit] = STATE(2256), + [sym_char_lit] = STATE(2256), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2256), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2256), + [sym_set_lit] = STATE(2256), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2256), + [sym_splicing_read_cond_lit] = STATE(2256), + [sym_var_quoting_lit] = STATE(2256), + [sym_quoting_lit] = STATE(2256), + [sym_syn_quoting_lit] = STATE(2256), + [sym_unquote_splicing_lit] = STATE(2256), + [sym_unquoting_lit] = STATE(2256), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2256), + [sym_package_lit] = STATE(2256), + [sym_include_reader_macro] = STATE(2256), + [sym_complex_num_lit] = STATE(2256), + [aux_sym_dis_expr_repeat1] = STATE(20), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(949), + [sym_comment] = ACTIONS(949), + [anon_sym_POUND_] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(953), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(955), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(953), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym_POUND_CARET] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(380), - [anon_sym_cl] = ACTIONS(462), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_defun] = ACTIONS(388), - [anon_sym_defmacro] = ACTIONS(388), - [anon_sym_defgeneric] = ACTIONS(388), - [anon_sym_defmethod] = ACTIONS(388), - [anon_sym_lambda] = ACTIONS(390), - [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), + [sym_fancy_literal] = ACTIONS(953), + [anon_sym_cl] = ACTIONS(959), + [anon_sym_EQ] = ACTIONS(963), + [aux_sym_accumulation_verb_token1] = ACTIONS(828), + [anon_sym_for] = ACTIONS(828), + [anon_sym_and] = ACTIONS(828), + [anon_sym_as] = ACTIONS(828), + [anon_sym_with] = ACTIONS(828), + [anon_sym_do] = ACTIONS(828), + [anon_sym_while] = ACTIONS(828), + [anon_sym_until] = ACTIONS(828), + [anon_sym_repeat] = ACTIONS(828), + [anon_sym_when] = ACTIONS(828), + [anon_sym_if] = ACTIONS(828), + [anon_sym_unless] = ACTIONS(828), + [anon_sym_always] = ACTIONS(828), + [anon_sym_thereis] = ACTIONS(828), + [anon_sym_never] = ACTIONS(828), + [anon_sym_else] = ACTIONS(828), + [anon_sym_finally] = ACTIONS(828), + [anon_sym_return] = ACTIONS(828), + [anon_sym_initially] = ACTIONS(828), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(965), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [29] = { - [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), - [aux_sym_num_lit_token1] = ACTIONS(472), - [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(486), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_POUND0A] = ACTIONS(490), - [anon_sym_POUND0a] = ACTIONS(490), - [anon_sym_POUND_QMARK] = ACTIONS(492), - [anon_sym_POUND_QMARK_AT] = ACTIONS(494), - [anon_sym_POUND_SQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_BQUOTE] = ACTIONS(500), - [anon_sym_COMMA_AT] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(504), + [sym__gap] = STATE(39), + [sym_dis_expr] = STATE(39), + [sym__form] = STATE(2169), + [sym_num_lit] = STATE(2169), + [sym_kwd_lit] = STATE(2169), + [sym_str_lit] = STATE(2169), + [sym_char_lit] = STATE(2169), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2169), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2169), + [sym_set_lit] = STATE(2169), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2169), + [sym_splicing_read_cond_lit] = STATE(2169), + [sym_var_quoting_lit] = STATE(2169), + [sym_quoting_lit] = STATE(2169), + [sym_syn_quoting_lit] = STATE(2169), + [sym_unquote_splicing_lit] = STATE(2169), + [sym_unquoting_lit] = STATE(2169), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2169), + [sym_package_lit] = STATE(2169), + [sym_include_reader_macro] = STATE(2169), + [sym_complex_num_lit] = STATE(2169), + [aux_sym_dis_expr_repeat1] = STATE(39), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(967), + [sym_comment] = ACTIONS(967), + [anon_sym_POUND_] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(975), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(975), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(981), + [anon_sym_POUND_CARET] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [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(512), - [anon_sym_POUND_DASH] = ACTIONS(512), - [anon_sym_POUNDC] = ACTIONS(514), - [anon_sym_POUNDc] = ACTIONS(514), + [sym_fancy_literal] = ACTIONS(975), + [anon_sym_cl] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(1000), + [aux_sym_accumulation_verb_token1] = ACTIONS(1002), + [anon_sym_for] = ACTIONS(1002), + [anon_sym_and] = ACTIONS(1002), + [anon_sym_as] = ACTIONS(1002), + [anon_sym_with] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(1002), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_until] = ACTIONS(1002), + [anon_sym_repeat] = ACTIONS(1002), + [anon_sym_when] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1002), + [anon_sym_unless] = ACTIONS(1002), + [anon_sym_always] = ACTIONS(1002), + [anon_sym_thereis] = ACTIONS(1002), + [anon_sym_never] = ACTIONS(1002), + [anon_sym_else] = ACTIONS(1002), + [anon_sym_finally] = ACTIONS(1002), + [anon_sym_return] = ACTIONS(1002), + [anon_sym_initially] = ACTIONS(1002), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1005), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [30] = { - [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(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(202), - [anon_sym_CARET] = ACTIONS(25), - [anon_sym_POUND_CARET] = ACTIONS(27), - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(40), + [sym_num_lit] = STATE(40), + [sym_kwd_lit] = STATE(40), + [sym_str_lit] = STATE(40), + [sym_char_lit] = STATE(40), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(40), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(40), + [sym_set_lit] = STATE(40), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(40), + [sym_splicing_read_cond_lit] = STATE(40), + [sym_var_quoting_lit] = STATE(40), + [sym_quoting_lit] = STATE(40), + [sym_syn_quoting_lit] = STATE(40), + [sym_unquote_splicing_lit] = STATE(40), + [sym_unquoting_lit] = STATE(40), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(40), + [sym_package_lit] = STATE(40), + [sym_include_reader_macro] = STATE(40), + [sym_complex_num_lit] = STATE(40), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1007), + [sym_comment] = ACTIONS(1007), + [anon_sym_POUND_] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(1013), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(1013), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(1018), + [anon_sym_POUND_CARET] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(520), - [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), + [sym_fancy_literal] = ACTIONS(1013), + [anon_sym_cl] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1032), + [aux_sym_accumulation_verb_token1] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_and] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_until] = ACTIONS(1034), + [anon_sym_repeat] = ACTIONS(1034), + [anon_sym_when] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_unless] = ACTIONS(1034), + [anon_sym_always] = ACTIONS(1034), + [anon_sym_thereis] = ACTIONS(1034), + [anon_sym_never] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_finally] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_initially] = ACTIONS(1034), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(1036), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [31] = { - [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__gap] = STATE(17), + [sym_dis_expr] = STATE(17), + [sym__form] = STATE(2530), + [sym_num_lit] = STATE(2530), + [sym_kwd_lit] = STATE(2530), + [sym_str_lit] = STATE(2530), + [sym_char_lit] = STATE(2530), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2530), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2530), + [sym_set_lit] = STATE(2530), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2530), + [sym_splicing_read_cond_lit] = STATE(2530), + [sym_var_quoting_lit] = STATE(2530), + [sym_quoting_lit] = STATE(2530), + [sym_syn_quoting_lit] = STATE(2530), + [sym_unquote_splicing_lit] = STATE(2530), + [sym_unquoting_lit] = STATE(2530), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2530), + [sym_package_lit] = STATE(2530), + [sym_include_reader_macro] = STATE(2530), + [sym_complex_num_lit] = STATE(2530), + [aux_sym_dis_expr_repeat1] = STATE(17), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1038), + [sym_comment] = ACTIONS(1038), + [anon_sym_POUND_] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1046), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1046), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_POUND_CARET] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [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), + [sym_fancy_literal] = ACTIONS(1046), + [anon_sym_cl] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1071), + [aux_sym_accumulation_verb_token1] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1073), + [anon_sym_and] = ACTIONS(1073), + [anon_sym_as] = ACTIONS(1073), + [anon_sym_with] = ACTIONS(1073), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_while] = ACTIONS(1073), + [anon_sym_until] = ACTIONS(1073), + [anon_sym_repeat] = ACTIONS(1073), + [anon_sym_when] = ACTIONS(1073), + [anon_sym_if] = ACTIONS(1073), + [anon_sym_unless] = ACTIONS(1073), + [anon_sym_always] = ACTIONS(1073), + [anon_sym_thereis] = ACTIONS(1073), + [anon_sym_never] = ACTIONS(1073), + [anon_sym_else] = ACTIONS(1073), + [anon_sym_finally] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1073), + [anon_sym_initially] = ACTIONS(1073), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1076), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(16), + [sym__ws] = ACTIONS(1078), + [sym_comment] = ACTIONS(1078), + [anon_sym_POUND_] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_POUND_CARET] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), [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), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(1080), + [aux_sym_accumulation_verb_token1] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_and] = ACTIONS(1080), + [anon_sym_as] = ACTIONS(1080), + [anon_sym_with] = ACTIONS(1080), + [anon_sym_do] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_until] = ACTIONS(1080), + [anon_sym_repeat] = ACTIONS(1080), + [anon_sym_when] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_unless] = ACTIONS(1080), + [anon_sym_always] = ACTIONS(1080), + [anon_sym_thereis] = ACTIONS(1080), + [anon_sym_never] = ACTIONS(1080), + [anon_sym_else] = ACTIONS(1080), + [anon_sym_finally] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_initially] = ACTIONS(1080), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), }, [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__gap] = STATE(6), + [sym_dis_expr] = STATE(6), + [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(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(7), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(7), + [sym_set_lit] = STATE(7), + [sym__bare_set_lit] = STATE(1069), + [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(1070), + [sym_loop_macro] = STATE(1070), + [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(6), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1082), + [sym_comment] = ACTIONS(1082), + [anon_sym_POUND_] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(1085), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(1087), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(1085), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym_POUND_CARET] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [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), + [sym_fancy_literal] = ACTIONS(1085), + [anon_sym_cl] = ACTIONS(1090), + [anon_sym_EQ] = ACTIONS(1093), + [aux_sym_accumulation_verb_token1] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_and] = ACTIONS(860), + [anon_sym_as] = ACTIONS(860), + [anon_sym_with] = ACTIONS(860), + [anon_sym_do] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_until] = ACTIONS(860), + [anon_sym_repeat] = ACTIONS(860), + [anon_sym_when] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_unless] = ACTIONS(860), + [anon_sym_always] = ACTIONS(860), + [anon_sym_thereis] = ACTIONS(860), + [anon_sym_never] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_finally] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_initially] = ACTIONS(860), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(1095), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2211), + [sym_num_lit] = STATE(2211), + [sym_kwd_lit] = STATE(2211), + [sym_str_lit] = STATE(2211), + [sym_char_lit] = STATE(2211), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2211), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2211), + [sym_set_lit] = STATE(2211), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2211), + [sym_splicing_read_cond_lit] = STATE(2211), + [sym_var_quoting_lit] = STATE(2211), + [sym_quoting_lit] = STATE(2211), + [sym_syn_quoting_lit] = STATE(2211), + [sym_unquote_splicing_lit] = STATE(2211), + [sym_unquoting_lit] = STATE(2211), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2211), + [sym_package_lit] = STATE(2211), + [sym_include_reader_macro] = STATE(2211), + [sym_complex_num_lit] = STATE(2211), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(59), + [sym_comment] = ACTIONS(59), + [anon_sym_POUND_] = ACTIONS(63), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1097), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1099), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1097), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(83), + [anon_sym_POUND_CARET] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [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), + [sym_fancy_literal] = ACTIONS(1097), + [anon_sym_cl] = ACTIONS(1103), + [anon_sym_EQ] = ACTIONS(1107), + [aux_sym_accumulation_verb_token1] = ACTIONS(120), + [anon_sym_for] = ACTIONS(120), + [anon_sym_and] = ACTIONS(120), + [anon_sym_as] = ACTIONS(120), + [anon_sym_with] = ACTIONS(120), + [anon_sym_do] = ACTIONS(120), + [anon_sym_while] = ACTIONS(120), + [anon_sym_until] = ACTIONS(120), + [anon_sym_repeat] = ACTIONS(120), + [anon_sym_when] = ACTIONS(120), + [anon_sym_if] = ACTIONS(120), + [anon_sym_unless] = ACTIONS(120), + [anon_sym_always] = ACTIONS(120), + [anon_sym_thereis] = ACTIONS(120), + [anon_sym_never] = ACTIONS(120), + [anon_sym_else] = ACTIONS(120), + [anon_sym_finally] = ACTIONS(120), + [anon_sym_return] = ACTIONS(120), + [anon_sym_initially] = ACTIONS(120), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1109), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2153), + [sym_num_lit] = STATE(2153), + [sym_kwd_lit] = STATE(2153), + [sym_str_lit] = STATE(2153), + [sym_char_lit] = STATE(2153), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2153), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2153), + [sym_set_lit] = STATE(2153), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2153), + [sym_splicing_read_cond_lit] = STATE(2153), + [sym_var_quoting_lit] = STATE(2153), + [sym_quoting_lit] = STATE(2153), + [sym_syn_quoting_lit] = STATE(2153), + [sym_unquote_splicing_lit] = STATE(2153), + [sym_unquoting_lit] = STATE(2153), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2153), + [sym_package_lit] = STATE(2153), + [sym_include_reader_macro] = STATE(2153), + [sym_complex_num_lit] = STATE(2153), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(682), + [sym_comment] = ACTIONS(682), + [anon_sym_POUND_] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1111), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1111), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(696), + [anon_sym_POUND_CARET] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [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), + [sym_fancy_literal] = ACTIONS(1111), + [anon_sym_cl] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1121), + [aux_sym_accumulation_verb_token1] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_as] = ACTIONS(717), + [anon_sym_with] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_until] = ACTIONS(717), + [anon_sym_repeat] = ACTIONS(717), + [anon_sym_when] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_unless] = ACTIONS(717), + [anon_sym_always] = ACTIONS(717), + [anon_sym_thereis] = ACTIONS(717), + [anon_sym_never] = ACTIONS(717), + [anon_sym_else] = ACTIONS(717), + [anon_sym_finally] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_initially] = ACTIONS(717), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1123), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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(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(718), - [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__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2123), + [sym_num_lit] = STATE(2123), + [sym_kwd_lit] = STATE(2123), + [sym_str_lit] = STATE(2123), + [sym_char_lit] = STATE(2123), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2123), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2123), + [sym_set_lit] = STATE(2123), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2123), + [sym_splicing_read_cond_lit] = STATE(2123), + [sym_var_quoting_lit] = STATE(2123), + [sym_quoting_lit] = STATE(2123), + [sym_syn_quoting_lit] = STATE(2123), + [sym_unquote_splicing_lit] = STATE(2123), + [sym_unquoting_lit] = STATE(2123), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2123), + [sym_package_lit] = STATE(2123), + [sym_include_reader_macro] = STATE(2123), + [sym_complex_num_lit] = STATE(2123), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1125), + [sym_comment] = ACTIONS(1125), + [anon_sym_POUND_] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1133), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1135), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1133), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1139), + [anon_sym_POUND_CARET] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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(720), - [anon_sym_POUND_PLUS] = ACTIONS(55), - [anon_sym_POUND_DASH] = ACTIONS(55), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), + [sym_fancy_literal] = ACTIONS(1133), + [anon_sym_cl] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1158), + [aux_sym_accumulation_verb_token1] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_and] = ACTIONS(1160), + [anon_sym_as] = ACTIONS(1160), + [anon_sym_with] = ACTIONS(1160), + [anon_sym_do] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_until] = ACTIONS(1160), + [anon_sym_repeat] = ACTIONS(1160), + [anon_sym_when] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_unless] = ACTIONS(1160), + [anon_sym_always] = ACTIONS(1160), + [anon_sym_thereis] = ACTIONS(1160), + [anon_sym_never] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(1160), + [anon_sym_finally] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_initially] = ACTIONS(1160), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1163), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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), + [sym__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(16), + [sym__ws] = ACTIONS(1165), + [sym_comment] = ACTIONS(1165), + [anon_sym_POUND_] = ACTIONS(1165), + [anon_sym_POUND] = ACTIONS(724), [anon_sym_DOT] = ACTIONS(726), [aux_sym_num_lit_token1] = ACTIONS(728), - [anon_sym_COLON] = ACTIONS(730), + [anon_sym_COLON] = ACTIONS(1167), [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(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), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(1165), + [anon_sym_POUND_CARET] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), [sym_block_comment] = ACTIONS(47), [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), + [anon_sym_cl] = ACTIONS(1167), + [aux_sym_accumulation_verb_token1] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_as] = ACTIONS(1167), + [anon_sym_with] = ACTIONS(1167), + [anon_sym_do] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_until] = ACTIONS(1167), + [anon_sym_repeat] = ACTIONS(1167), + [anon_sym_when] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_unless] = ACTIONS(1167), + [anon_sym_always] = ACTIONS(1167), + [anon_sym_thereis] = ACTIONS(1167), + [anon_sym_never] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_finally] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_initially] = ACTIONS(1167), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), }, [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(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__gap] = STATE(25), + [sym_dis_expr] = STATE(25), + [sym__form] = STATE(26), + [sym_num_lit] = STATE(26), + [sym_kwd_lit] = STATE(26), + [sym_str_lit] = STATE(26), + [sym_char_lit] = STATE(26), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(26), + [sym__bare_list_lit] = STATE(1070), + [sym_vec_lit] = STATE(26), + [sym_set_lit] = STATE(26), + [sym__bare_set_lit] = STATE(1069), + [sym_read_cond_lit] = STATE(26), + [sym_splicing_read_cond_lit] = STATE(26), + [sym_var_quoting_lit] = STATE(26), + [sym_quoting_lit] = STATE(26), + [sym_syn_quoting_lit] = STATE(26), + [sym_unquote_splicing_lit] = STATE(26), + [sym_unquoting_lit] = STATE(26), + [sym_defun] = STATE(1070), + [sym_loop_macro] = STATE(1070), + [sym_path_lit] = STATE(26), + [sym_package_lit] = STATE(26), + [sym_include_reader_macro] = STATE(26), + [sym_complex_num_lit] = STATE(26), + [aux_sym_dis_expr_repeat1] = STATE(25), + [aux_sym_list_lit_repeat1] = STATE(2804), + [sym__ws] = ACTIONS(1169), + [sym_comment] = ACTIONS(1169), + [anon_sym_POUND_] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_DOT] = ACTIONS(1175), + [aux_sym_num_lit_token1] = ACTIONS(181), + [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON_COLON] = ACTIONS(186), + [anon_sym_DQUOTE] = ACTIONS(188), + [sym_nil_lit] = ACTIONS(1175), + [aux_sym_sym_lit_token1] = ACTIONS(190), + [anon_sym_CARET] = ACTIONS(1180), + [anon_sym_POUND_CARET] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1189), + [anon_sym_POUND0A] = ACTIONS(203), + [anon_sym_POUND0a] = ACTIONS(203), + [anon_sym_POUND_QMARK] = ACTIONS(205), + [anon_sym_POUND_QMARK_AT] = ACTIONS(207), + [anon_sym_POUND_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE] = ACTIONS(211), + [anon_sym_BQUOTE] = ACTIONS(213), + [anon_sym_COMMA_AT] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(217), [sym_block_comment] = ACTIONS(47), - [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), + [sym_fancy_literal] = ACTIONS(1175), + [anon_sym_cl] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1194), + [aux_sym_accumulation_verb_token1] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_as] = ACTIONS(1196), + [anon_sym_with] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_until] = ACTIONS(1196), + [anon_sym_repeat] = ACTIONS(1196), + [anon_sym_when] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_unless] = ACTIONS(1196), + [anon_sym_always] = ACTIONS(1196), + [anon_sym_thereis] = ACTIONS(1196), + [anon_sym_never] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_finally] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_initially] = ACTIONS(1196), + [anon_sym_POUNDP] = ACTIONS(226), + [anon_sym_POUNDp] = ACTIONS(226), + [sym_self_referential_reader_macro] = ACTIONS(1198), + [anon_sym_POUND_PLUS] = ACTIONS(230), + [anon_sym_POUND_DASH] = ACTIONS(230), + [anon_sym_POUNDC] = ACTIONS(232), + [anon_sym_POUNDc] = ACTIONS(232), }, [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(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(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(830), - [anon_sym_LBRACE] = ACTIONS(832), - [anon_sym_POUND0A] = ACTIONS(75), - [anon_sym_POUND0a] = ACTIONS(75), - [anon_sym_POUND_QMARK] = ACTIONS(77), - [anon_sym_POUND_QMARK_AT] = ACTIONS(79), - [anon_sym_POUND_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_COMMA_AT] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(89), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2059), + [sym_num_lit] = STATE(2059), + [sym_kwd_lit] = STATE(2059), + [sym_str_lit] = STATE(2059), + [sym_char_lit] = STATE(2059), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2059), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2059), + [sym_set_lit] = STATE(2059), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2059), + [sym_splicing_read_cond_lit] = STATE(2059), + [sym_var_quoting_lit] = STATE(2059), + [sym_quoting_lit] = STATE(2059), + [sym_syn_quoting_lit] = STATE(2059), + [sym_unquote_splicing_lit] = STATE(2059), + [sym_unquoting_lit] = STATE(2059), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2059), + [sym_package_lit] = STATE(2059), + [sym_include_reader_macro] = STATE(2059), + [sym_complex_num_lit] = STATE(2059), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1200), + [sym_comment] = ACTIONS(1200), + [anon_sym_POUND_] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1208), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1208), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_POUND_CARET] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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(836), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), - [anon_sym_POUNDc] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(1208), + [anon_sym_cl] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1233), + [aux_sym_accumulation_verb_token1] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1235), + [anon_sym_as] = ACTIONS(1235), + [anon_sym_with] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_until] = ACTIONS(1235), + [anon_sym_repeat] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_unless] = ACTIONS(1235), + [anon_sym_always] = ACTIONS(1235), + [anon_sym_thereis] = ACTIONS(1235), + [anon_sym_never] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_finally] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_initially] = ACTIONS(1235), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1238), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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(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__gap] = STATE(36), + [sym_dis_expr] = STATE(36), + [sym__form] = STATE(2196), + [sym_num_lit] = STATE(2196), + [sym_kwd_lit] = STATE(2196), + [sym_str_lit] = STATE(2196), + [sym_char_lit] = STATE(2196), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2196), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2196), + [sym_set_lit] = STATE(2196), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2196), + [sym_splicing_read_cond_lit] = STATE(2196), + [sym_var_quoting_lit] = STATE(2196), + [sym_quoting_lit] = STATE(2196), + [sym_syn_quoting_lit] = STATE(2196), + [sym_unquote_splicing_lit] = STATE(2196), + [sym_unquoting_lit] = STATE(2196), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2196), + [sym_package_lit] = STATE(2196), + [sym_include_reader_macro] = STATE(2196), + [sym_complex_num_lit] = STATE(2196), + [aux_sym_dis_expr_repeat1] = STATE(36), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1240), + [sym_comment] = ACTIONS(1240), + [anon_sym_POUND_] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1248), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1248), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1254), + [anon_sym_POUND_CARET] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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), + [sym_fancy_literal] = ACTIONS(1248), + [anon_sym_cl] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1273), + [aux_sym_accumulation_verb_token1] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_and] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1275), + [anon_sym_with] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_until] = ACTIONS(1275), + [anon_sym_repeat] = ACTIONS(1275), + [anon_sym_when] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_unless] = ACTIONS(1275), + [anon_sym_always] = ACTIONS(1275), + [anon_sym_thereis] = ACTIONS(1275), + [anon_sym_never] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_finally] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_initially] = ACTIONS(1275), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1278), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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(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(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(858), - [anon_sym_SQUOTE] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_COMMA_AT] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(866), + [sym__gap] = STATE(990), + [sym_dis_expr] = STATE(990), + [sym__form] = STATE(2536), + [sym_num_lit] = STATE(2536), + [sym_kwd_lit] = STATE(2536), + [sym_str_lit] = STATE(2536), + [sym_char_lit] = STATE(2536), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2536), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2536), + [sym_set_lit] = STATE(2536), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2536), + [sym_splicing_read_cond_lit] = STATE(2536), + [sym_var_quoting_lit] = STATE(2536), + [sym_quoting_lit] = STATE(2536), + [sym_syn_quoting_lit] = STATE(2536), + [sym_unquote_splicing_lit] = STATE(2536), + [sym_unquoting_lit] = STATE(2536), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2536), + [sym_package_lit] = STATE(2536), + [sym_include_reader_macro] = STATE(2536), + [sym_complex_num_lit] = STATE(2536), + [aux_sym_dis_expr_repeat1] = STATE(990), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1280), + [sym_comment] = ACTIONS(1280), + [anon_sym_POUND_] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1288), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1288), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_POUND_CARET] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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(720), - [anon_sym_POUND_PLUS] = ACTIONS(868), - [anon_sym_POUND_DASH] = ACTIONS(868), - [anon_sym_POUNDC] = ACTIONS(57), - [anon_sym_POUNDc] = ACTIONS(57), + [sym_fancy_literal] = ACTIONS(1288), + [anon_sym_cl] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1313), + [aux_sym_accumulation_verb_token1] = ACTIONS(1315), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_and] = ACTIONS(1315), + [anon_sym_as] = ACTIONS(1315), + [anon_sym_with] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_until] = ACTIONS(1315), + [anon_sym_repeat] = ACTIONS(1315), + [anon_sym_when] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_unless] = ACTIONS(1315), + [anon_sym_always] = ACTIONS(1315), + [anon_sym_thereis] = ACTIONS(1315), + [anon_sym_never] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_finally] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_initially] = ACTIONS(1315), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1318), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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__gap] = STATE(204), + [sym_dis_expr] = STATE(204), + [sym__form] = STATE(2225), + [sym_num_lit] = STATE(2225), + [sym_kwd_lit] = STATE(2225), + [sym_str_lit] = STATE(2225), + [sym_char_lit] = STATE(2225), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2225), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2225), + [sym_set_lit] = STATE(2225), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2225), + [sym_splicing_read_cond_lit] = STATE(2225), + [sym_var_quoting_lit] = STATE(2225), + [sym_quoting_lit] = STATE(2225), + [sym_syn_quoting_lit] = STATE(2225), + [sym_unquote_splicing_lit] = STATE(2225), + [sym_unquoting_lit] = STATE(2225), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2225), + [sym_package_lit] = STATE(2225), + [sym_include_reader_macro] = STATE(2225), + [sym_complex_num_lit] = STATE(2225), + [aux_sym_dis_expr_repeat1] = STATE(204), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1320), + [sym_comment] = ACTIONS(1320), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1326), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1326), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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), + [sym_fancy_literal] = ACTIONS(1326), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1347), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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(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__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2343), + [sym_num_lit] = STATE(2343), + [sym_kwd_lit] = STATE(2343), + [sym_str_lit] = STATE(2343), + [sym_char_lit] = STATE(2343), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2343), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2343), + [sym_set_lit] = STATE(2343), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2343), + [sym_splicing_read_cond_lit] = STATE(2343), + [sym_var_quoting_lit] = STATE(2343), + [sym_quoting_lit] = STATE(2343), + [sym_syn_quoting_lit] = STATE(2343), + [sym_unquote_splicing_lit] = STATE(2343), + [sym_unquoting_lit] = STATE(2343), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2343), + [sym_package_lit] = STATE(2343), + [sym_include_reader_macro] = STATE(2343), + [sym_complex_num_lit] = STATE(2343), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1349), + [sym_comment] = ACTIONS(1349), + [anon_sym_POUND_] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1355), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1355), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_POUND_CARET] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), [sym_block_comment] = ACTIONS(47), - [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(548), - [anon_sym_POUND_PLUS] = ACTIONS(969), - [anon_sym_POUND_DASH] = ACTIONS(969), - [anon_sym_POUNDC] = ACTIONS(318), - [anon_sym_POUNDc] = ACTIONS(318), + [sym_fancy_literal] = ACTIONS(1355), + [anon_sym_cl] = ACTIONS(1371), + [aux_sym_accumulation_verb_token1] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_with] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_until] = ACTIONS(1374), + [anon_sym_repeat] = ACTIONS(1374), + [anon_sym_when] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_unless] = ACTIONS(1374), + [anon_sym_always] = ACTIONS(1374), + [anon_sym_thereis] = ACTIONS(1374), + [anon_sym_never] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_finally] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_initially] = ACTIONS(1374), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1376), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), }, [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), + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2135), + [sym_num_lit] = STATE(2135), + [sym_kwd_lit] = STATE(2135), + [sym_str_lit] = STATE(2135), + [sym_char_lit] = STATE(2135), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2135), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2135), + [sym_set_lit] = STATE(2135), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2135), + [sym_splicing_read_cond_lit] = STATE(2135), + [sym_var_quoting_lit] = STATE(2135), + [sym_quoting_lit] = STATE(2135), + [sym_syn_quoting_lit] = STATE(2135), + [sym_unquote_splicing_lit] = STATE(2135), + [sym_unquoting_lit] = STATE(2135), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2135), + [sym_package_lit] = STATE(2135), + [sym_include_reader_macro] = STATE(2135), + [sym_complex_num_lit] = STATE(2135), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1378), + [sym_comment] = ACTIONS(1378), + [anon_sym_POUND_] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1384), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1384), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_POUND_CARET] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1384), + [anon_sym_cl] = ACTIONS(1400), + [aux_sym_accumulation_verb_token1] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1403), + [anon_sym_with] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_until] = ACTIONS(1403), + [anon_sym_repeat] = ACTIONS(1403), + [anon_sym_when] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_unless] = ACTIONS(1403), + [anon_sym_always] = ACTIONS(1403), + [anon_sym_thereis] = ACTIONS(1403), + [anon_sym_never] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_finally] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_initially] = ACTIONS(1403), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1405), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [45] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2130), + [sym_num_lit] = STATE(2130), + [sym_kwd_lit] = STATE(2130), + [sym_str_lit] = STATE(2130), + [sym_char_lit] = STATE(2130), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2130), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2130), + [sym_set_lit] = STATE(2130), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2130), + [sym_splicing_read_cond_lit] = STATE(2130), + [sym_var_quoting_lit] = STATE(2130), + [sym_quoting_lit] = STATE(2130), + [sym_syn_quoting_lit] = STATE(2130), + [sym_unquote_splicing_lit] = STATE(2130), + [sym_unquoting_lit] = STATE(2130), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2130), + [sym_package_lit] = STATE(2130), + [sym_include_reader_macro] = STATE(2130), + [sym_complex_num_lit] = STATE(2130), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1407), + [sym_comment] = ACTIONS(1407), + [anon_sym_POUND_] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1413), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1413), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym_POUND_CARET] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1413), + [anon_sym_cl] = ACTIONS(1429), + [aux_sym_accumulation_verb_token1] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_and] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_until] = ACTIONS(1432), + [anon_sym_repeat] = ACTIONS(1432), + [anon_sym_when] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_unless] = ACTIONS(1432), + [anon_sym_always] = ACTIONS(1432), + [anon_sym_thereis] = ACTIONS(1432), + [anon_sym_never] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_finally] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_initially] = ACTIONS(1432), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1434), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [46] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2423), + [sym_num_lit] = STATE(2423), + [sym_kwd_lit] = STATE(2423), + [sym_str_lit] = STATE(2423), + [sym_char_lit] = STATE(2423), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2423), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2423), + [sym_set_lit] = STATE(2423), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2423), + [sym_splicing_read_cond_lit] = STATE(2423), + [sym_var_quoting_lit] = STATE(2423), + [sym_quoting_lit] = STATE(2423), + [sym_syn_quoting_lit] = STATE(2423), + [sym_unquote_splicing_lit] = STATE(2423), + [sym_unquoting_lit] = STATE(2423), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2423), + [sym_package_lit] = STATE(2423), + [sym_include_reader_macro] = STATE(2423), + [sym_complex_num_lit] = STATE(2423), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1436), + [sym_comment] = ACTIONS(1436), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1442), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1442), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1442), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1463), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [47] = { + [sym__gap] = STATE(116), + [sym_dis_expr] = STATE(116), + [sym__form] = STATE(2543), + [sym_num_lit] = STATE(2543), + [sym_kwd_lit] = STATE(2543), + [sym_str_lit] = STATE(2543), + [sym_char_lit] = STATE(2543), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2543), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2543), + [sym_set_lit] = STATE(2543), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2543), + [sym_splicing_read_cond_lit] = STATE(2543), + [sym_var_quoting_lit] = STATE(2543), + [sym_quoting_lit] = STATE(2543), + [sym_syn_quoting_lit] = STATE(2543), + [sym_unquote_splicing_lit] = STATE(2543), + [sym_unquoting_lit] = STATE(2543), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2543), + [sym_package_lit] = STATE(2543), + [sym_include_reader_macro] = STATE(2543), + [sym_complex_num_lit] = STATE(2543), + [aux_sym_dis_expr_repeat1] = STATE(116), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1465), + [sym_comment] = ACTIONS(1465), + [anon_sym_POUND_] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1471), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1471), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_POUND_CARET] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1471), + [anon_sym_cl] = ACTIONS(1487), + [aux_sym_accumulation_verb_token1] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_and] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_with] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_until] = ACTIONS(1490), + [anon_sym_repeat] = ACTIONS(1490), + [anon_sym_when] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_unless] = ACTIONS(1490), + [anon_sym_always] = ACTIONS(1490), + [anon_sym_thereis] = ACTIONS(1490), + [anon_sym_never] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_finally] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_initially] = ACTIONS(1490), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1492), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [48] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2100), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2100), + [sym_set_lit] = STATE(2100), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1494), + [sym_comment] = ACTIONS(1494), + [anon_sym_POUND_] = ACTIONS(1497), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1500), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1500), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_POUND_CARET] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1500), + [anon_sym_cl] = ACTIONS(1516), + [aux_sym_accumulation_verb_token1] = ACTIONS(1519), + [anon_sym_for] = ACTIONS(1519), + [anon_sym_and] = ACTIONS(1519), + [anon_sym_as] = ACTIONS(1519), + [anon_sym_with] = ACTIONS(1519), + [anon_sym_do] = ACTIONS(1519), + [anon_sym_while] = ACTIONS(1519), + [anon_sym_until] = ACTIONS(1519), + [anon_sym_repeat] = ACTIONS(1519), + [anon_sym_when] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1519), + [anon_sym_unless] = ACTIONS(1519), + [anon_sym_always] = ACTIONS(1519), + [anon_sym_thereis] = ACTIONS(1519), + [anon_sym_never] = ACTIONS(1519), + [anon_sym_else] = ACTIONS(1519), + [anon_sym_finally] = ACTIONS(1519), + [anon_sym_return] = ACTIONS(1519), + [anon_sym_initially] = ACTIONS(1519), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1521), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [49] = { + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(2534), + [sym_num_lit] = STATE(2534), + [sym_kwd_lit] = STATE(2534), + [sym_str_lit] = STATE(2534), + [sym_char_lit] = STATE(2534), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2534), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2534), + [sym_set_lit] = STATE(2534), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2534), + [sym_splicing_read_cond_lit] = STATE(2534), + [sym_var_quoting_lit] = STATE(2534), + [sym_quoting_lit] = STATE(2534), + [sym_syn_quoting_lit] = STATE(2534), + [sym_unquote_splicing_lit] = STATE(2534), + [sym_unquoting_lit] = STATE(2534), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2534), + [sym_package_lit] = STATE(2534), + [sym_include_reader_macro] = STATE(2534), + [sym_complex_num_lit] = STATE(2534), + [aux_sym_dis_expr_repeat1] = STATE(111), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1523), + [sym_comment] = ACTIONS(1523), + [anon_sym_POUND_] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1529), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1529), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym_POUND_CARET] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1529), + [anon_sym_cl] = ACTIONS(1545), + [aux_sym_accumulation_verb_token1] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_and] = ACTIONS(1548), + [anon_sym_as] = ACTIONS(1548), + [anon_sym_with] = ACTIONS(1548), + [anon_sym_do] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_until] = ACTIONS(1548), + [anon_sym_repeat] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_unless] = ACTIONS(1548), + [anon_sym_always] = ACTIONS(1548), + [anon_sym_thereis] = ACTIONS(1548), + [anon_sym_never] = ACTIONS(1548), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_finally] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_initially] = ACTIONS(1548), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1550), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [50] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2524), + [sym_num_lit] = STATE(2524), + [sym_kwd_lit] = STATE(2524), + [sym_str_lit] = STATE(2524), + [sym_char_lit] = STATE(2524), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2524), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2524), + [sym_set_lit] = STATE(2524), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2524), + [sym_splicing_read_cond_lit] = STATE(2524), + [sym_var_quoting_lit] = STATE(2524), + [sym_quoting_lit] = STATE(2524), + [sym_syn_quoting_lit] = STATE(2524), + [sym_unquote_splicing_lit] = STATE(2524), + [sym_unquoting_lit] = STATE(2524), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2524), + [sym_package_lit] = STATE(2524), + [sym_include_reader_macro] = STATE(2524), + [sym_complex_num_lit] = STATE(2524), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1552), + [sym_comment] = ACTIONS(1552), + [anon_sym_POUND_] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1555), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1555), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_POUND_CARET] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1555), + [anon_sym_cl] = ACTIONS(1487), + [aux_sym_accumulation_verb_token1] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_and] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_with] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_until] = ACTIONS(1490), + [anon_sym_repeat] = ACTIONS(1490), + [anon_sym_when] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_unless] = ACTIONS(1490), + [anon_sym_always] = ACTIONS(1490), + [anon_sym_thereis] = ACTIONS(1490), + [anon_sym_never] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_finally] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_initially] = ACTIONS(1490), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1557), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [51] = { + [sym__gap] = STATE(108), + [sym_dis_expr] = STATE(108), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2520), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2520), + [sym_set_lit] = STATE(2520), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(108), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1559), + [sym_comment] = ACTIONS(1559), + [anon_sym_POUND_] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1562), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1562), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_POUND_CARET] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1562), + [anon_sym_cl] = ACTIONS(1487), + [aux_sym_accumulation_verb_token1] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_and] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_with] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_until] = ACTIONS(1490), + [anon_sym_repeat] = ACTIONS(1490), + [anon_sym_when] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_unless] = ACTIONS(1490), + [anon_sym_always] = ACTIONS(1490), + [anon_sym_thereis] = ACTIONS(1490), + [anon_sym_never] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1490), + [anon_sym_finally] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_initially] = ACTIONS(1490), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1564), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [52] = { + [sym__gap] = STATE(92), + [sym_dis_expr] = STATE(92), + [sym__form] = STATE(2419), + [sym_num_lit] = STATE(2419), + [sym_kwd_lit] = STATE(2419), + [sym_str_lit] = STATE(2419), + [sym_char_lit] = STATE(2419), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2419), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2419), + [sym_set_lit] = STATE(2419), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2419), + [sym_splicing_read_cond_lit] = STATE(2419), + [sym_var_quoting_lit] = STATE(2419), + [sym_quoting_lit] = STATE(2419), + [sym_syn_quoting_lit] = STATE(2419), + [sym_unquote_splicing_lit] = STATE(2419), + [sym_unquoting_lit] = STATE(2419), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2419), + [sym_package_lit] = STATE(2419), + [sym_include_reader_macro] = STATE(2419), + [sym_complex_num_lit] = STATE(2419), + [aux_sym_dis_expr_repeat1] = STATE(92), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1566), + [sym_comment] = ACTIONS(1566), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1569), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1569), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1569), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1571), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [53] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(2412), + [sym_num_lit] = STATE(2412), + [sym_kwd_lit] = STATE(2412), + [sym_str_lit] = STATE(2412), + [sym_char_lit] = STATE(2412), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2412), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2412), + [sym_set_lit] = STATE(2412), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2412), + [sym_splicing_read_cond_lit] = STATE(2412), + [sym_var_quoting_lit] = STATE(2412), + [sym_quoting_lit] = STATE(2412), + [sym_syn_quoting_lit] = STATE(2412), + [sym_unquote_splicing_lit] = STATE(2412), + [sym_unquoting_lit] = STATE(2412), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2412), + [sym_package_lit] = STATE(2412), + [sym_include_reader_macro] = STATE(2412), + [sym_complex_num_lit] = STATE(2412), + [aux_sym_dis_expr_repeat1] = STATE(91), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1573), + [sym_comment] = ACTIONS(1573), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1576), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1576), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1576), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1578), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [54] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2090), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2090), + [sym_set_lit] = STATE(2090), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1586), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1586), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1586), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1607), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [55] = { + [sym__gap] = STATE(181), + [sym_dis_expr] = STATE(181), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2089), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2089), + [sym_set_lit] = STATE(2089), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(181), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1609), + [sym_comment] = ACTIONS(1609), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1612), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1612), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1612), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1614), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [56] = { + [sym__gap] = STATE(275), + [sym_dis_expr] = STATE(275), + [sym__form] = STATE(2698), + [sym_num_lit] = STATE(2698), + [sym_kwd_lit] = STATE(2698), + [sym_str_lit] = STATE(2698), + [sym_char_lit] = STATE(2698), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2698), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2698), + [sym_set_lit] = STATE(2698), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2698), + [sym_splicing_read_cond_lit] = STATE(2698), + [sym_var_quoting_lit] = STATE(2698), + [sym_quoting_lit] = STATE(2698), + [sym_syn_quoting_lit] = STATE(2698), + [sym_unquote_splicing_lit] = STATE(2698), + [sym_unquoting_lit] = STATE(2698), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2698), + [sym_package_lit] = STATE(2698), + [sym_include_reader_macro] = STATE(2698), + [sym_complex_num_lit] = STATE(2698), + [aux_sym_dis_expr_repeat1] = STATE(275), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1264), + [sym__ws] = ACTIONS(1616), + [sym_comment] = ACTIONS(1616), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1622), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(1622), + [aux_sym_sym_lit_token1] = ACTIONS(1632), [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), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), [sym_block_comment] = ACTIONS(47), - [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), + [sym_fancy_literal] = ACTIONS(1622), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(1660), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), }, - [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), + [57] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2409), + [sym_num_lit] = STATE(2409), + [sym_kwd_lit] = STATE(2409), + [sym_str_lit] = STATE(2409), + [sym_char_lit] = STATE(2409), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2409), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2409), + [sym_set_lit] = STATE(2409), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2409), + [sym_splicing_read_cond_lit] = STATE(2409), + [sym_var_quoting_lit] = STATE(2409), + [sym_quoting_lit] = STATE(2409), + [sym_syn_quoting_lit] = STATE(2409), + [sym_unquote_splicing_lit] = STATE(2409), + [sym_unquoting_lit] = STATE(2409), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2409), + [sym_package_lit] = STATE(2409), + [sym_include_reader_macro] = STATE(2409), + [sym_complex_num_lit] = STATE(2409), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1436), + [sym_comment] = ACTIONS(1436), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1666), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1666), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1666), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1668), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [58] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2402), + [sym_num_lit] = STATE(2402), + [sym_kwd_lit] = STATE(2402), + [sym_str_lit] = STATE(2402), + [sym_char_lit] = STATE(2402), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2402), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2402), + [sym_set_lit] = STATE(2402), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2402), + [sym_splicing_read_cond_lit] = STATE(2402), + [sym_var_quoting_lit] = STATE(2402), + [sym_quoting_lit] = STATE(2402), + [sym_syn_quoting_lit] = STATE(2402), + [sym_unquote_splicing_lit] = STATE(2402), + [sym_unquoting_lit] = STATE(2402), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2402), + [sym_package_lit] = STATE(2402), + [sym_include_reader_macro] = STATE(2402), + [sym_complex_num_lit] = STATE(2402), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1349), + [sym_comment] = ACTIONS(1349), + [anon_sym_POUND_] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1670), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1670), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_POUND_CARET] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1670), + [anon_sym_cl] = ACTIONS(1371), + [aux_sym_accumulation_verb_token1] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_and] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1374), + [anon_sym_with] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_until] = ACTIONS(1374), + [anon_sym_repeat] = ACTIONS(1374), + [anon_sym_when] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_unless] = ACTIONS(1374), + [anon_sym_always] = ACTIONS(1374), + [anon_sym_thereis] = ACTIONS(1374), + [anon_sym_never] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_finally] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_initially] = ACTIONS(1374), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1672), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [59] = { + [sym__gap] = STATE(89), + [sym_dis_expr] = STATE(89), + [sym__form] = STATE(2393), + [sym_num_lit] = STATE(2393), + [sym_kwd_lit] = STATE(2393), + [sym_str_lit] = STATE(2393), + [sym_char_lit] = STATE(2393), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2393), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2393), + [sym_set_lit] = STATE(2393), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2393), + [sym_splicing_read_cond_lit] = STATE(2393), + [sym_var_quoting_lit] = STATE(2393), + [sym_quoting_lit] = STATE(2393), + [sym_syn_quoting_lit] = STATE(2393), + [sym_unquote_splicing_lit] = STATE(2393), + [sym_unquoting_lit] = STATE(2393), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2393), + [sym_package_lit] = STATE(2393), + [sym_include_reader_macro] = STATE(2393), + [sym_complex_num_lit] = STATE(2393), + [aux_sym_dis_expr_repeat1] = STATE(89), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1674), + [sym_comment] = ACTIONS(1674), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1680), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1680), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1680), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1701), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [60] = { + [sym__gap] = STATE(274), + [sym_dis_expr] = STATE(274), + [sym__form] = STATE(2697), + [sym_num_lit] = STATE(2697), + [sym_kwd_lit] = STATE(2697), + [sym_str_lit] = STATE(2697), + [sym_char_lit] = STATE(2697), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2697), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2697), + [sym_set_lit] = STATE(2697), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2697), + [sym_splicing_read_cond_lit] = STATE(2697), + [sym_var_quoting_lit] = STATE(2697), + [sym_quoting_lit] = STATE(2697), + [sym_syn_quoting_lit] = STATE(2697), + [sym_unquote_splicing_lit] = STATE(2697), + [sym_unquoting_lit] = STATE(2697), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2697), + [sym_package_lit] = STATE(2697), + [sym_include_reader_macro] = STATE(2697), + [sym_complex_num_lit] = STATE(2697), + [aux_sym_dis_expr_repeat1] = STATE(274), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1265), + [sym__ws] = ACTIONS(1703), + [sym_comment] = ACTIONS(1703), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1705), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(1705), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1705), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(1707), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [61] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2080), + [sym_num_lit] = STATE(2080), + [sym_kwd_lit] = STATE(2080), + [sym_str_lit] = STATE(2080), + [sym_char_lit] = STATE(2080), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2080), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2080), + [sym_set_lit] = STATE(2080), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2080), + [sym_splicing_read_cond_lit] = STATE(2080), + [sym_var_quoting_lit] = STATE(2080), + [sym_quoting_lit] = STATE(2080), + [sym_syn_quoting_lit] = STATE(2080), + [sym_unquote_splicing_lit] = STATE(2080), + [sym_unquoting_lit] = STATE(2080), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2080), + [sym_package_lit] = STATE(2080), + [sym_include_reader_macro] = STATE(2080), + [sym_complex_num_lit] = STATE(2080), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1709), + [sym_comment] = ACTIONS(1709), + [anon_sym_POUND_] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1715), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1715), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND_CARET] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1715), + [anon_sym_cl] = ACTIONS(1731), + [aux_sym_accumulation_verb_token1] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_and] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_with] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_until] = ACTIONS(1734), + [anon_sym_repeat] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_unless] = ACTIONS(1734), + [anon_sym_always] = ACTIONS(1734), + [anon_sym_thereis] = ACTIONS(1734), + [anon_sym_never] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_finally] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_initially] = ACTIONS(1734), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1736), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [62] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2391), + [sym_num_lit] = STATE(2391), + [sym_kwd_lit] = STATE(2391), + [sym_str_lit] = STATE(2391), + [sym_char_lit] = STATE(2391), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2391), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2391), + [sym_set_lit] = STATE(2391), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2391), + [sym_splicing_read_cond_lit] = STATE(2391), + [sym_var_quoting_lit] = STATE(2391), + [sym_quoting_lit] = STATE(2391), + [sym_syn_quoting_lit] = STATE(2391), + [sym_unquote_splicing_lit] = STATE(2391), + [sym_unquoting_lit] = STATE(2391), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2391), + [sym_package_lit] = STATE(2391), + [sym_include_reader_macro] = STATE(2391), + [sym_complex_num_lit] = STATE(2391), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1738), + [sym_comment] = ACTIONS(1738), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1741), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1741), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1741), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1743), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [63] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2075), + [sym_num_lit] = STATE(2075), + [sym_kwd_lit] = STATE(2075), + [sym_str_lit] = STATE(2075), + [sym_char_lit] = STATE(2075), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2075), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2075), + [sym_set_lit] = STATE(2075), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2075), + [sym_splicing_read_cond_lit] = STATE(2075), + [sym_var_quoting_lit] = STATE(2075), + [sym_quoting_lit] = STATE(2075), + [sym_syn_quoting_lit] = STATE(2075), + [sym_unquote_splicing_lit] = STATE(2075), + [sym_unquoting_lit] = STATE(2075), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2075), + [sym_package_lit] = STATE(2075), + [sym_include_reader_macro] = STATE(2075), + [sym_complex_num_lit] = STATE(2075), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1745), + [sym_comment] = ACTIONS(1745), + [anon_sym_POUND_] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1751), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1753), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1751), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_POUND_CARET] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1751), + [anon_sym_cl] = ACTIONS(1767), + [aux_sym_accumulation_verb_token1] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_with] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_until] = ACTIONS(1770), + [anon_sym_repeat] = ACTIONS(1770), + [anon_sym_when] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_unless] = ACTIONS(1770), + [anon_sym_always] = ACTIONS(1770), + [anon_sym_thereis] = ACTIONS(1770), + [anon_sym_never] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_finally] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_initially] = ACTIONS(1770), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1772), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [64] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2388), + [sym_num_lit] = STATE(2388), + [sym_kwd_lit] = STATE(2388), + [sym_str_lit] = STATE(2388), + [sym_char_lit] = STATE(2388), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2388), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2388), + [sym_set_lit] = STATE(2388), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2388), + [sym_splicing_read_cond_lit] = STATE(2388), + [sym_var_quoting_lit] = STATE(2388), + [sym_quoting_lit] = STATE(2388), + [sym_syn_quoting_lit] = STATE(2388), + [sym_unquote_splicing_lit] = STATE(2388), + [sym_unquoting_lit] = STATE(2388), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2388), + [sym_package_lit] = STATE(2388), + [sym_include_reader_macro] = STATE(2388), + [sym_complex_num_lit] = STATE(2388), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1738), + [sym_comment] = ACTIONS(1738), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1774), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1774), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1774), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1776), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [65] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2382), + [sym_num_lit] = STATE(2382), + [sym_kwd_lit] = STATE(2382), + [sym_str_lit] = STATE(2382), + [sym_char_lit] = STATE(2382), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2382), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2382), + [sym_set_lit] = STATE(2382), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2382), + [sym_splicing_read_cond_lit] = STATE(2382), + [sym_var_quoting_lit] = STATE(2382), + [sym_quoting_lit] = STATE(2382), + [sym_syn_quoting_lit] = STATE(2382), + [sym_unquote_splicing_lit] = STATE(2382), + [sym_unquoting_lit] = STATE(2382), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2382), + [sym_package_lit] = STATE(2382), + [sym_include_reader_macro] = STATE(2382), + [sym_complex_num_lit] = STATE(2382), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1436), + [sym_comment] = ACTIONS(1436), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1778), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1778), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1778), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1780), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [66] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2071), + [sym_num_lit] = STATE(2071), + [sym_kwd_lit] = STATE(2071), + [sym_str_lit] = STATE(2071), + [sym_char_lit] = STATE(2071), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2071), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2071), + [sym_set_lit] = STATE(2071), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2071), + [sym_splicing_read_cond_lit] = STATE(2071), + [sym_var_quoting_lit] = STATE(2071), + [sym_quoting_lit] = STATE(2071), + [sym_syn_quoting_lit] = STATE(2071), + [sym_unquote_splicing_lit] = STATE(2071), + [sym_unquoting_lit] = STATE(2071), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2071), + [sym_package_lit] = STATE(2071), + [sym_include_reader_macro] = STATE(2071), + [sym_complex_num_lit] = STATE(2071), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1782), + [sym_comment] = ACTIONS(1782), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1788), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1788), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1788), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1809), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [67] = { + [sym__gap] = STATE(76), + [sym_dis_expr] = STATE(76), + [sym__form] = STATE(2502), + [sym_num_lit] = STATE(2502), + [sym_kwd_lit] = STATE(2502), + [sym_str_lit] = STATE(2502), + [sym_char_lit] = STATE(2502), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2502), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2502), + [sym_set_lit] = STATE(2502), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2502), + [sym_splicing_read_cond_lit] = STATE(2502), + [sym_var_quoting_lit] = STATE(2502), + [sym_quoting_lit] = STATE(2502), + [sym_syn_quoting_lit] = STATE(2502), + [sym_unquote_splicing_lit] = STATE(2502), + [sym_unquoting_lit] = STATE(2502), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2502), + [sym_package_lit] = STATE(2502), + [sym_include_reader_macro] = STATE(2502), + [sym_complex_num_lit] = STATE(2502), + [aux_sym_dis_expr_repeat1] = STATE(76), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1811), + [sym_comment] = ACTIONS(1811), + [anon_sym_POUND_] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1817), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1819), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1817), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_POUND_CARET] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1817), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_as] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_until] = ACTIONS(276), + [anon_sym_repeat] = ACTIONS(276), + [anon_sym_when] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_unless] = ACTIONS(276), + [anon_sym_always] = ACTIONS(276), + [anon_sym_thereis] = ACTIONS(276), + [anon_sym_never] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_finally] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_initially] = ACTIONS(276), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1828), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [68] = { + [sym__gap] = STATE(71), + [sym_dis_expr] = STATE(71), + [sym__form] = STATE(2358), + [sym_num_lit] = STATE(2358), + [sym_kwd_lit] = STATE(2358), + [sym_str_lit] = STATE(2358), + [sym_char_lit] = STATE(2358), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2358), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2358), + [sym_set_lit] = STATE(2358), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2358), + [sym_splicing_read_cond_lit] = STATE(2358), + [sym_var_quoting_lit] = STATE(2358), + [sym_quoting_lit] = STATE(2358), + [sym_syn_quoting_lit] = STATE(2358), + [sym_unquote_splicing_lit] = STATE(2358), + [sym_unquoting_lit] = STATE(2358), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2358), + [sym_package_lit] = STATE(2358), + [sym_include_reader_macro] = STATE(2358), + [sym_complex_num_lit] = STATE(2358), + [aux_sym_dis_expr_repeat1] = STATE(71), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1830), + [sym_comment] = ACTIONS(1830), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1833), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1833), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1833), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1835), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [69] = { + [sym__gap] = STATE(273), + [sym_dis_expr] = STATE(273), + [sym__form] = STATE(2744), + [sym_num_lit] = STATE(2744), + [sym_kwd_lit] = STATE(2744), + [sym_str_lit] = STATE(2744), + [sym_char_lit] = STATE(2744), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2744), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2744), + [sym_set_lit] = STATE(2744), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2744), + [sym_splicing_read_cond_lit] = STATE(2744), + [sym_var_quoting_lit] = STATE(2744), + [sym_quoting_lit] = STATE(2744), + [sym_syn_quoting_lit] = STATE(2744), + [sym_unquote_splicing_lit] = STATE(2744), + [sym_unquoting_lit] = STATE(2744), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2744), + [sym_package_lit] = STATE(2744), + [sym_include_reader_macro] = STATE(2744), + [sym_complex_num_lit] = STATE(2744), + [aux_sym_dis_expr_repeat1] = STATE(273), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1255), + [sym__ws] = ACTIONS(1837), + [sym_comment] = ACTIONS(1837), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1839), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(1839), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1839), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(1841), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [70] = { + [sym__gap] = STATE(123), + [sym_dis_expr] = STATE(123), + [sym__form] = STATE(2527), + [sym_num_lit] = STATE(2527), + [sym_kwd_lit] = STATE(2527), + [sym_str_lit] = STATE(2527), + [sym_char_lit] = STATE(2527), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2527), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2527), + [sym_set_lit] = STATE(2527), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2527), + [sym_splicing_read_cond_lit] = STATE(2527), + [sym_var_quoting_lit] = STATE(2527), + [sym_quoting_lit] = STATE(2527), + [sym_syn_quoting_lit] = STATE(2527), + [sym_unquote_splicing_lit] = STATE(2527), + [sym_unquoting_lit] = STATE(2527), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2527), + [sym_package_lit] = STATE(2527), + [sym_include_reader_macro] = STATE(2527), + [sym_complex_num_lit] = STATE(2527), + [aux_sym_dis_expr_repeat1] = STATE(123), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1843), + [sym_comment] = ACTIONS(1843), + [anon_sym_POUND_] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1846), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1819), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1846), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(260), + [anon_sym_POUND_CARET] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(269), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1846), + [anon_sym_cl] = ACTIONS(1825), + [aux_sym_accumulation_verb_token1] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_and] = ACTIONS(276), + [anon_sym_as] = ACTIONS(276), + [anon_sym_with] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + [anon_sym_until] = ACTIONS(276), + [anon_sym_repeat] = ACTIONS(276), + [anon_sym_when] = ACTIONS(276), + [anon_sym_if] = ACTIONS(276), + [anon_sym_unless] = ACTIONS(276), + [anon_sym_always] = ACTIONS(276), + [anon_sym_thereis] = ACTIONS(276), + [anon_sym_never] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_finally] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_initially] = ACTIONS(276), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1848), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [71] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2065), + [sym_num_lit] = STATE(2065), + [sym_kwd_lit] = STATE(2065), + [sym_str_lit] = STATE(2065), + [sym_char_lit] = STATE(2065), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2065), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2065), + [sym_set_lit] = STATE(2065), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2065), + [sym_splicing_read_cond_lit] = STATE(2065), + [sym_var_quoting_lit] = STATE(2065), + [sym_quoting_lit] = STATE(2065), + [sym_syn_quoting_lit] = STATE(2065), + [sym_unquote_splicing_lit] = STATE(2065), + [sym_unquoting_lit] = STATE(2065), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2065), + [sym_package_lit] = STATE(2065), + [sym_include_reader_macro] = STATE(2065), + [sym_complex_num_lit] = STATE(2065), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1782), + [sym_comment] = ACTIONS(1782), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1850), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1850), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1850), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1852), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [72] = { + [sym__gap] = STATE(129), + [sym_dis_expr] = STATE(129), + [sym__form] = STATE(2405), + [sym_num_lit] = STATE(2405), + [sym_kwd_lit] = STATE(2405), + [sym_str_lit] = STATE(2405), + [sym_char_lit] = STATE(2405), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2405), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2405), + [sym_set_lit] = STATE(2405), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2405), + [sym_splicing_read_cond_lit] = STATE(2405), + [sym_var_quoting_lit] = STATE(2405), + [sym_quoting_lit] = STATE(2405), + [sym_syn_quoting_lit] = STATE(2405), + [sym_unquote_splicing_lit] = STATE(2405), + [sym_unquoting_lit] = STATE(2405), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2405), + [sym_package_lit] = STATE(2405), + [sym_include_reader_macro] = STATE(2405), + [sym_complex_num_lit] = STATE(2405), + [aux_sym_dis_expr_repeat1] = STATE(129), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1854), + [sym_comment] = ACTIONS(1854), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1860), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1860), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1860), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1881), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [73] = { + [sym__gap] = STATE(66), + [sym_dis_expr] = STATE(66), + [sym__form] = STATE(2347), + [sym_num_lit] = STATE(2347), + [sym_kwd_lit] = STATE(2347), + [sym_str_lit] = STATE(2347), + [sym_char_lit] = STATE(2347), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2347), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2347), + [sym_set_lit] = STATE(2347), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2347), + [sym_splicing_read_cond_lit] = STATE(2347), + [sym_var_quoting_lit] = STATE(2347), + [sym_quoting_lit] = STATE(2347), + [sym_syn_quoting_lit] = STATE(2347), + [sym_unquote_splicing_lit] = STATE(2347), + [sym_unquoting_lit] = STATE(2347), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2347), + [sym_package_lit] = STATE(2347), + [sym_include_reader_macro] = STATE(2347), + [sym_complex_num_lit] = STATE(2347), + [aux_sym_dis_expr_repeat1] = STATE(66), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1883), + [sym_comment] = ACTIONS(1883), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1886), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1886), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1886), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1888), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [74] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2346), + [sym_num_lit] = STATE(2346), + [sym_kwd_lit] = STATE(2346), + [sym_str_lit] = STATE(2346), + [sym_char_lit] = STATE(2346), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2346), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2346), + [sym_set_lit] = STATE(2346), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2346), + [sym_splicing_read_cond_lit] = STATE(2346), + [sym_var_quoting_lit] = STATE(2346), + [sym_quoting_lit] = STATE(2346), + [sym_syn_quoting_lit] = STATE(2346), + [sym_unquote_splicing_lit] = STATE(2346), + [sym_unquoting_lit] = STATE(2346), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2346), + [sym_package_lit] = STATE(2346), + [sym_include_reader_macro] = STATE(2346), + [sym_complex_num_lit] = STATE(2346), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1436), + [sym_comment] = ACTIONS(1436), + [anon_sym_POUND_] = ACTIONS(1439), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1890), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1890), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_POUND_CARET] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1890), + [anon_sym_cl] = ACTIONS(1458), + [aux_sym_accumulation_verb_token1] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_until] = ACTIONS(1461), + [anon_sym_repeat] = ACTIONS(1461), + [anon_sym_when] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_unless] = ACTIONS(1461), + [anon_sym_always] = ACTIONS(1461), + [anon_sym_thereis] = ACTIONS(1461), + [anon_sym_never] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_finally] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_initially] = ACTIONS(1461), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1892), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [75] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2379), + [sym_num_lit] = STATE(2379), + [sym_kwd_lit] = STATE(2379), + [sym_str_lit] = STATE(2379), + [sym_char_lit] = STATE(2379), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2379), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2379), + [sym_set_lit] = STATE(2379), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2379), + [sym_splicing_read_cond_lit] = STATE(2379), + [sym_var_quoting_lit] = STATE(2379), + [sym_quoting_lit] = STATE(2379), + [sym_syn_quoting_lit] = STATE(2379), + [sym_unquote_splicing_lit] = STATE(2379), + [sym_unquoting_lit] = STATE(2379), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2379), + [sym_package_lit] = STATE(2379), + [sym_include_reader_macro] = STATE(2379), + [sym_complex_num_lit] = STATE(2379), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1894), + [sym_comment] = ACTIONS(1894), + [anon_sym_POUND_] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1900), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1900), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_POUND_CARET] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1900), + [anon_sym_cl] = ACTIONS(1916), + [aux_sym_accumulation_verb_token1] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_and] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_until] = ACTIONS(1919), + [anon_sym_repeat] = ACTIONS(1919), + [anon_sym_when] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_unless] = ACTIONS(1919), + [anon_sym_always] = ACTIONS(1919), + [anon_sym_thereis] = ACTIONS(1919), + [anon_sym_never] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_finally] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_initially] = ACTIONS(1919), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1921), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [76] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2403), + [sym_num_lit] = STATE(2403), + [sym_kwd_lit] = STATE(2403), + [sym_str_lit] = STATE(2403), + [sym_char_lit] = STATE(2403), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2403), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2403), + [sym_set_lit] = STATE(2403), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2403), + [sym_splicing_read_cond_lit] = STATE(2403), + [sym_var_quoting_lit] = STATE(2403), + [sym_quoting_lit] = STATE(2403), + [sym_syn_quoting_lit] = STATE(2403), + [sym_unquote_splicing_lit] = STATE(2403), + [sym_unquoting_lit] = STATE(2403), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2403), + [sym_package_lit] = STATE(2403), + [sym_include_reader_macro] = STATE(2403), + [sym_complex_num_lit] = STATE(2403), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1923), + [sym_comment] = ACTIONS(1923), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1926), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1926), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1926), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1928), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [77] = { + [sym__gap] = STATE(63), + [sym_dis_expr] = STATE(63), + [sym__form] = STATE(2335), + [sym_num_lit] = STATE(2335), + [sym_kwd_lit] = STATE(2335), + [sym_str_lit] = STATE(2335), + [sym_char_lit] = STATE(2335), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2335), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2335), + [sym_set_lit] = STATE(2335), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2335), + [sym_splicing_read_cond_lit] = STATE(2335), + [sym_var_quoting_lit] = STATE(2335), + [sym_quoting_lit] = STATE(2335), + [sym_syn_quoting_lit] = STATE(2335), + [sym_unquote_splicing_lit] = STATE(2335), + [sym_unquoting_lit] = STATE(2335), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2335), + [sym_package_lit] = STATE(2335), + [sym_include_reader_macro] = STATE(2335), + [sym_complex_num_lit] = STATE(2335), + [aux_sym_dis_expr_repeat1] = STATE(63), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1930), + [sym_comment] = ACTIONS(1930), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1933), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1933), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1933), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1935), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [78] = { + [sym__gap] = STATE(135), + [sym_dis_expr] = STATE(135), + [sym__form] = STATE(2401), + [sym_num_lit] = STATE(2401), + [sym_kwd_lit] = STATE(2401), + [sym_str_lit] = STATE(2401), + [sym_char_lit] = STATE(2401), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2401), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2401), + [sym_set_lit] = STATE(2401), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2401), + [sym_splicing_read_cond_lit] = STATE(2401), + [sym_var_quoting_lit] = STATE(2401), + [sym_quoting_lit] = STATE(2401), + [sym_syn_quoting_lit] = STATE(2401), + [sym_unquote_splicing_lit] = STATE(2401), + [sym_unquoting_lit] = STATE(2401), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2401), + [sym_package_lit] = STATE(2401), + [sym_include_reader_macro] = STATE(2401), + [sym_complex_num_lit] = STATE(2401), + [aux_sym_dis_expr_repeat1] = STATE(135), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1937), + [sym_comment] = ACTIONS(1937), + [anon_sym_POUND_] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1943), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1945), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1943), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym_POUND_CARET] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1943), + [anon_sym_cl] = ACTIONS(1959), + [aux_sym_accumulation_verb_token1] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_as] = ACTIONS(1962), + [anon_sym_with] = ACTIONS(1962), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_until] = ACTIONS(1962), + [anon_sym_repeat] = ACTIONS(1962), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_unless] = ACTIONS(1962), + [anon_sym_always] = ACTIONS(1962), + [anon_sym_thereis] = ACTIONS(1962), + [anon_sym_never] = ACTIONS(1962), + [anon_sym_else] = ACTIONS(1962), + [anon_sym_finally] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_initially] = ACTIONS(1962), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1964), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [79] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2334), + [sym_num_lit] = STATE(2334), + [sym_kwd_lit] = STATE(2334), + [sym_str_lit] = STATE(2334), + [sym_char_lit] = STATE(2334), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2334), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2334), + [sym_set_lit] = STATE(2334), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2334), + [sym_splicing_read_cond_lit] = STATE(2334), + [sym_var_quoting_lit] = STATE(2334), + [sym_quoting_lit] = STATE(2334), + [sym_syn_quoting_lit] = STATE(2334), + [sym_unquote_splicing_lit] = STATE(2334), + [sym_unquoting_lit] = STATE(2334), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2334), + [sym_package_lit] = STATE(2334), + [sym_include_reader_macro] = STATE(2334), + [sym_complex_num_lit] = STATE(2334), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1738), + [sym_comment] = ACTIONS(1738), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1966), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1966), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1966), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1968), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [80] = { + [sym__gap] = STATE(193), + [sym_dis_expr] = STATE(193), + [sym__form] = STATE(2064), + [sym_num_lit] = STATE(2064), + [sym_kwd_lit] = STATE(2064), + [sym_str_lit] = STATE(2064), + [sym_char_lit] = STATE(2064), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2064), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2064), + [sym_set_lit] = STATE(2064), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2064), + [sym_splicing_read_cond_lit] = STATE(2064), + [sym_var_quoting_lit] = STATE(2064), + [sym_quoting_lit] = STATE(2064), + [sym_syn_quoting_lit] = STATE(2064), + [sym_unquote_splicing_lit] = STATE(2064), + [sym_unquoting_lit] = STATE(2064), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2064), + [sym_package_lit] = STATE(2064), + [sym_include_reader_macro] = STATE(2064), + [sym_complex_num_lit] = STATE(2064), + [aux_sym_dis_expr_repeat1] = STATE(193), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1970), + [sym_comment] = ACTIONS(1970), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1973), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1973), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1973), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1975), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [81] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2326), + [sym_num_lit] = STATE(2326), + [sym_kwd_lit] = STATE(2326), + [sym_str_lit] = STATE(2326), + [sym_char_lit] = STATE(2326), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2326), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2326), + [sym_set_lit] = STATE(2326), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2326), + [sym_splicing_read_cond_lit] = STATE(2326), + [sym_var_quoting_lit] = STATE(2326), + [sym_quoting_lit] = STATE(2326), + [sym_syn_quoting_lit] = STATE(2326), + [sym_unquote_splicing_lit] = STATE(2326), + [sym_unquoting_lit] = STATE(2326), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2326), + [sym_package_lit] = STATE(2326), + [sym_include_reader_macro] = STATE(2326), + [sym_complex_num_lit] = STATE(2326), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1738), + [sym_comment] = ACTIONS(1738), + [anon_sym_POUND_] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1977), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1977), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1685), + [anon_sym_POUND_CARET] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1694), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1977), + [anon_sym_cl] = ACTIONS(1696), + [aux_sym_accumulation_verb_token1] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_and] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_do] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_until] = ACTIONS(1699), + [anon_sym_repeat] = ACTIONS(1699), + [anon_sym_when] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_unless] = ACTIONS(1699), + [anon_sym_always] = ACTIONS(1699), + [anon_sym_thereis] = ACTIONS(1699), + [anon_sym_never] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1699), + [anon_sym_finally] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_initially] = ACTIONS(1699), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1979), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [82] = { + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [sym__form] = STATE(2395), + [sym_num_lit] = STATE(2395), + [sym_kwd_lit] = STATE(2395), + [sym_str_lit] = STATE(2395), + [sym_char_lit] = STATE(2395), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2395), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2395), + [sym_set_lit] = STATE(2395), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2395), + [sym_splicing_read_cond_lit] = STATE(2395), + [sym_var_quoting_lit] = STATE(2395), + [sym_quoting_lit] = STATE(2395), + [sym_syn_quoting_lit] = STATE(2395), + [sym_unquote_splicing_lit] = STATE(2395), + [sym_unquoting_lit] = STATE(2395), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2395), + [sym_package_lit] = STATE(2395), + [sym_include_reader_macro] = STATE(2395), + [sym_complex_num_lit] = STATE(2395), + [aux_sym_dis_expr_repeat1] = STATE(148), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1981), + [sym_comment] = ACTIONS(1981), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1984), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1984), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1984), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1986), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [83] = { + [sym__gap] = STATE(61), + [sym_dis_expr] = STATE(61), + [sym__form] = STATE(2311), + [sym_num_lit] = STATE(2311), + [sym_kwd_lit] = STATE(2311), + [sym_str_lit] = STATE(2311), + [sym_char_lit] = STATE(2311), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2311), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2311), + [sym_set_lit] = STATE(2311), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2311), + [sym_splicing_read_cond_lit] = STATE(2311), + [sym_var_quoting_lit] = STATE(2311), + [sym_quoting_lit] = STATE(2311), + [sym_syn_quoting_lit] = STATE(2311), + [sym_unquote_splicing_lit] = STATE(2311), + [sym_unquoting_lit] = STATE(2311), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2311), + [sym_package_lit] = STATE(2311), + [sym_include_reader_macro] = STATE(2311), + [sym_complex_num_lit] = STATE(2311), + [aux_sym_dis_expr_repeat1] = STATE(61), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1988), + [sym_comment] = ACTIONS(1988), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1991), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1991), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1991), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1993), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [84] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2308), + [sym_num_lit] = STATE(2308), + [sym_kwd_lit] = STATE(2308), + [sym_str_lit] = STATE(2308), + [sym_char_lit] = STATE(2308), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2308), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2308), + [sym_set_lit] = STATE(2308), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2308), + [sym_splicing_read_cond_lit] = STATE(2308), + [sym_var_quoting_lit] = STATE(2308), + [sym_quoting_lit] = STATE(2308), + [sym_syn_quoting_lit] = STATE(2308), + [sym_unquote_splicing_lit] = STATE(2308), + [sym_unquoting_lit] = STATE(2308), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2308), + [sym_package_lit] = STATE(2308), + [sym_include_reader_macro] = STATE(2308), + [sym_complex_num_lit] = STATE(2308), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1995), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1995), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1995), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(1997), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [85] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2305), + [sym_num_lit] = STATE(2305), + [sym_kwd_lit] = STATE(2305), + [sym_str_lit] = STATE(2305), + [sym_char_lit] = STATE(2305), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2305), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2305), + [sym_set_lit] = STATE(2305), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2305), + [sym_splicing_read_cond_lit] = STATE(2305), + [sym_var_quoting_lit] = STATE(2305), + [sym_quoting_lit] = STATE(2305), + [sym_syn_quoting_lit] = STATE(2305), + [sym_unquote_splicing_lit] = STATE(2305), + [sym_unquoting_lit] = STATE(2305), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2305), + [sym_package_lit] = STATE(2305), + [sym_include_reader_macro] = STATE(2305), + [sym_complex_num_lit] = STATE(2305), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1999), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(1999), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1999), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2001), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [86] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2278), + [sym_num_lit] = STATE(2278), + [sym_kwd_lit] = STATE(2278), + [sym_str_lit] = STATE(2278), + [sym_char_lit] = STATE(2278), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2278), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2278), + [sym_set_lit] = STATE(2278), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2278), + [sym_splicing_read_cond_lit] = STATE(2278), + [sym_var_quoting_lit] = STATE(2278), + [sym_quoting_lit] = STATE(2278), + [sym_syn_quoting_lit] = STATE(2278), + [sym_unquote_splicing_lit] = STATE(2278), + [sym_unquoting_lit] = STATE(2278), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2278), + [sym_package_lit] = STATE(2278), + [sym_include_reader_macro] = STATE(2278), + [sym_complex_num_lit] = STATE(2278), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2003), + [sym_comment] = ACTIONS(2003), + [anon_sym_POUND_] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2009), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2009), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_POUND_CARET] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2009), + [anon_sym_cl] = ACTIONS(2025), + [aux_sym_accumulation_verb_token1] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_and] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_with] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_until] = ACTIONS(2028), + [anon_sym_repeat] = ACTIONS(2028), + [anon_sym_when] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_unless] = ACTIONS(2028), + [anon_sym_always] = ACTIONS(2028), + [anon_sym_thereis] = ACTIONS(2028), + [anon_sym_never] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_finally] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_initially] = ACTIONS(2028), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2030), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [87] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2262), + [sym_num_lit] = STATE(2262), + [sym_kwd_lit] = STATE(2262), + [sym_str_lit] = STATE(2262), + [sym_char_lit] = STATE(2262), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2262), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2262), + [sym_set_lit] = STATE(2262), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2262), + [sym_splicing_read_cond_lit] = STATE(2262), + [sym_var_quoting_lit] = STATE(2262), + [sym_quoting_lit] = STATE(2262), + [sym_syn_quoting_lit] = STATE(2262), + [sym_unquote_splicing_lit] = STATE(2262), + [sym_unquoting_lit] = STATE(2262), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2262), + [sym_package_lit] = STATE(2262), + [sym_include_reader_macro] = STATE(2262), + [sym_complex_num_lit] = STATE(2262), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2032), + [sym_comment] = ACTIONS(2032), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2038), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2038), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2038), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2059), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [88] = { + [sym__gap] = STATE(54), + [sym_dis_expr] = STATE(54), + [sym__form] = STATE(2252), + [sym_num_lit] = STATE(2252), + [sym_kwd_lit] = STATE(2252), + [sym_str_lit] = STATE(2252), + [sym_char_lit] = STATE(2252), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2252), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2252), + [sym_set_lit] = STATE(2252), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2252), + [sym_splicing_read_cond_lit] = STATE(2252), + [sym_var_quoting_lit] = STATE(2252), + [sym_quoting_lit] = STATE(2252), + [sym_syn_quoting_lit] = STATE(2252), + [sym_unquote_splicing_lit] = STATE(2252), + [sym_unquoting_lit] = STATE(2252), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2252), + [sym_package_lit] = STATE(2252), + [sym_include_reader_macro] = STATE(2252), + [sym_complex_num_lit] = STATE(2252), + [aux_sym_dis_expr_repeat1] = STATE(54), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2061), + [sym_comment] = ACTIONS(2061), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2064), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2064), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2064), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2066), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [89] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2057), + [sym_num_lit] = STATE(2057), + [sym_kwd_lit] = STATE(2057), + [sym_str_lit] = STATE(2057), + [sym_char_lit] = STATE(2057), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2057), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2057), + [sym_set_lit] = STATE(2057), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2057), + [sym_splicing_read_cond_lit] = STATE(2057), + [sym_var_quoting_lit] = STATE(2057), + [sym_quoting_lit] = STATE(2057), + [sym_syn_quoting_lit] = STATE(2057), + [sym_unquote_splicing_lit] = STATE(2057), + [sym_unquoting_lit] = STATE(2057), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2057), + [sym_package_lit] = STATE(2057), + [sym_include_reader_macro] = STATE(2057), + [sym_complex_num_lit] = STATE(2057), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1745), + [sym_comment] = ACTIONS(1745), + [anon_sym_POUND_] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2068), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1753), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2068), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym_POUND_CARET] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2068), + [anon_sym_cl] = ACTIONS(1767), + [aux_sym_accumulation_verb_token1] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_and] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_with] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_until] = ACTIONS(1770), + [anon_sym_repeat] = ACTIONS(1770), + [anon_sym_when] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_unless] = ACTIONS(1770), + [anon_sym_always] = ACTIONS(1770), + [anon_sym_thereis] = ACTIONS(1770), + [anon_sym_never] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_finally] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_initially] = ACTIONS(1770), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2070), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [90] = { + [sym__gap] = STATE(154), + [sym_dis_expr] = STATE(154), + [sym__form] = STATE(2390), + [sym_num_lit] = STATE(2390), + [sym_kwd_lit] = STATE(2390), + [sym_str_lit] = STATE(2390), + [sym_char_lit] = STATE(2390), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2390), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2390), + [sym_set_lit] = STATE(2390), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2390), + [sym_splicing_read_cond_lit] = STATE(2390), + [sym_var_quoting_lit] = STATE(2390), + [sym_quoting_lit] = STATE(2390), + [sym_syn_quoting_lit] = STATE(2390), + [sym_unquote_splicing_lit] = STATE(2390), + [sym_unquoting_lit] = STATE(2390), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2390), + [sym_package_lit] = STATE(2390), + [sym_include_reader_macro] = STATE(2390), + [sym_complex_num_lit] = STATE(2390), + [aux_sym_dis_expr_repeat1] = STATE(154), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2072), + [sym_comment] = ACTIONS(2072), + [anon_sym_POUND_] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2078), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2078), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_POUND_CARET] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2078), + [anon_sym_cl] = ACTIONS(2086), + [aux_sym_accumulation_verb_token1] = ACTIONS(497), + [anon_sym_for] = ACTIONS(497), + [anon_sym_and] = ACTIONS(497), + [anon_sym_as] = ACTIONS(497), + [anon_sym_with] = ACTIONS(497), + [anon_sym_do] = ACTIONS(497), + [anon_sym_while] = ACTIONS(497), + [anon_sym_until] = ACTIONS(497), + [anon_sym_repeat] = ACTIONS(497), + [anon_sym_when] = ACTIONS(497), + [anon_sym_if] = ACTIONS(497), + [anon_sym_unless] = ACTIONS(497), + [anon_sym_always] = ACTIONS(497), + [anon_sym_thereis] = ACTIONS(497), + [anon_sym_never] = ACTIONS(497), + [anon_sym_else] = ACTIONS(497), + [anon_sym_finally] = ACTIONS(497), + [anon_sym_return] = ACTIONS(497), + [anon_sym_initially] = ACTIONS(497), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2089), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [91] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2053), + [sym_num_lit] = STATE(2053), + [sym_kwd_lit] = STATE(2053), + [sym_str_lit] = STATE(2053), + [sym_char_lit] = STATE(2053), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2053), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2053), + [sym_set_lit] = STATE(2053), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2053), + [sym_splicing_read_cond_lit] = STATE(2053), + [sym_var_quoting_lit] = STATE(2053), + [sym_quoting_lit] = STATE(2053), + [sym_syn_quoting_lit] = STATE(2053), + [sym_unquote_splicing_lit] = STATE(2053), + [sym_unquoting_lit] = STATE(2053), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2053), + [sym_package_lit] = STATE(2053), + [sym_include_reader_macro] = STATE(2053), + [sym_complex_num_lit] = STATE(2053), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1782), + [sym_comment] = ACTIONS(1782), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2091), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2091), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2091), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2093), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [92] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2051), + [sym_num_lit] = STATE(2051), + [sym_kwd_lit] = STATE(2051), + [sym_str_lit] = STATE(2051), + [sym_char_lit] = STATE(2051), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2051), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2051), + [sym_set_lit] = STATE(2051), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2051), + [sym_splicing_read_cond_lit] = STATE(2051), + [sym_var_quoting_lit] = STATE(2051), + [sym_quoting_lit] = STATE(2051), + [sym_syn_quoting_lit] = STATE(2051), + [sym_unquote_splicing_lit] = STATE(2051), + [sym_unquoting_lit] = STATE(2051), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2051), + [sym_package_lit] = STATE(2051), + [sym_include_reader_macro] = STATE(2051), + [sym_complex_num_lit] = STATE(2051), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1782), + [sym_comment] = ACTIONS(1782), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2095), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2095), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2095), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2097), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [93] = { + [sym__gap] = STATE(248), + [sym_dis_expr] = STATE(248), + [sym__form] = STATE(2222), + [sym_num_lit] = STATE(2222), + [sym_kwd_lit] = STATE(2222), + [sym_str_lit] = STATE(2222), + [sym_char_lit] = STATE(2222), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2222), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2222), + [sym_set_lit] = STATE(2222), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2222), + [sym_splicing_read_cond_lit] = STATE(2222), + [sym_var_quoting_lit] = STATE(2222), + [sym_quoting_lit] = STATE(2222), + [sym_syn_quoting_lit] = STATE(2222), + [sym_unquote_splicing_lit] = STATE(2222), + [sym_unquoting_lit] = STATE(2222), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2222), + [sym_package_lit] = STATE(2222), + [sym_include_reader_macro] = STATE(2222), + [sym_complex_num_lit] = STATE(2222), + [aux_sym_dis_expr_repeat1] = STATE(248), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2099), + [sym_comment] = ACTIONS(2099), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2102), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2102), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2102), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2104), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [94] = { + [sym__gap] = STATE(277), + [sym_dis_expr] = STATE(277), + [sym__form] = STATE(2685), + [sym_num_lit] = STATE(2685), + [sym_kwd_lit] = STATE(2685), + [sym_str_lit] = STATE(2685), + [sym_char_lit] = STATE(2685), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2685), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2685), + [sym_set_lit] = STATE(2685), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2685), + [sym_splicing_read_cond_lit] = STATE(2685), + [sym_var_quoting_lit] = STATE(2685), + [sym_quoting_lit] = STATE(2685), + [sym_syn_quoting_lit] = STATE(2685), + [sym_unquote_splicing_lit] = STATE(2685), + [sym_unquoting_lit] = STATE(2685), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2685), + [sym_package_lit] = STATE(2685), + [sym_include_reader_macro] = STATE(2685), + [sym_complex_num_lit] = STATE(2685), + [aux_sym_dis_expr_repeat1] = STATE(277), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1266), + [sym__ws] = ACTIONS(2106), + [sym_comment] = ACTIONS(2106), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(2108), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(2108), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2108), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(2110), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [95] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2216), + [sym_num_lit] = STATE(2216), + [sym_kwd_lit] = STATE(2216), + [sym_str_lit] = STATE(2216), + [sym_char_lit] = STATE(2216), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2216), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2216), + [sym_set_lit] = STATE(2216), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2216), + [sym_splicing_read_cond_lit] = STATE(2216), + [sym_var_quoting_lit] = STATE(2216), + [sym_quoting_lit] = STATE(2216), + [sym_syn_quoting_lit] = STATE(2216), + [sym_unquote_splicing_lit] = STATE(2216), + [sym_unquoting_lit] = STATE(2216), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2216), + [sym_package_lit] = STATE(2216), + [sym_include_reader_macro] = STATE(2216), + [sym_complex_num_lit] = STATE(2216), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2032), + [sym_comment] = ACTIONS(2032), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2112), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2112), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2112), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2114), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [96] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2212), + [sym_num_lit] = STATE(2212), + [sym_kwd_lit] = STATE(2212), + [sym_str_lit] = STATE(2212), + [sym_char_lit] = STATE(2212), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2212), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2212), + [sym_set_lit] = STATE(2212), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2212), + [sym_splicing_read_cond_lit] = STATE(2212), + [sym_var_quoting_lit] = STATE(2212), + [sym_quoting_lit] = STATE(2212), + [sym_syn_quoting_lit] = STATE(2212), + [sym_unquote_splicing_lit] = STATE(2212), + [sym_unquoting_lit] = STATE(2212), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2212), + [sym_package_lit] = STATE(2212), + [sym_include_reader_macro] = STATE(2212), + [sym_complex_num_lit] = STATE(2212), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2116), + [sym_comment] = ACTIONS(2116), + [anon_sym_POUND_] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2122), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2122), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_POUND_CARET] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2122), + [anon_sym_cl] = ACTIONS(2138), + [aux_sym_accumulation_verb_token1] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_and] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_with] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_until] = ACTIONS(2141), + [anon_sym_repeat] = ACTIONS(2141), + [anon_sym_when] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_unless] = ACTIONS(2141), + [anon_sym_always] = ACTIONS(2141), + [anon_sym_thereis] = ACTIONS(2141), + [anon_sym_never] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_finally] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_initially] = ACTIONS(2141), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2143), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [97] = { + [sym__gap] = STATE(191), + [sym_dis_expr] = STATE(191), + [sym__form] = STATE(2206), + [sym_num_lit] = STATE(2206), + [sym_kwd_lit] = STATE(2206), + [sym_str_lit] = STATE(2206), + [sym_char_lit] = STATE(2206), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2206), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2206), + [sym_set_lit] = STATE(2206), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2206), + [sym_splicing_read_cond_lit] = STATE(2206), + [sym_var_quoting_lit] = STATE(2206), + [sym_quoting_lit] = STATE(2206), + [sym_syn_quoting_lit] = STATE(2206), + [sym_unquote_splicing_lit] = STATE(2206), + [sym_unquoting_lit] = STATE(2206), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2206), + [sym_package_lit] = STATE(2206), + [sym_include_reader_macro] = STATE(2206), + [sym_complex_num_lit] = STATE(2206), + [aux_sym_dis_expr_repeat1] = STATE(191), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2145), + [sym_comment] = ACTIONS(2145), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2151), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2151), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2151), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2172), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [98] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2205), + [sym_num_lit] = STATE(2205), + [sym_kwd_lit] = STATE(2205), + [sym_str_lit] = STATE(2205), + [sym_char_lit] = STATE(2205), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2205), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2205), + [sym_set_lit] = STATE(2205), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2205), + [sym_splicing_read_cond_lit] = STATE(2205), + [sym_var_quoting_lit] = STATE(2205), + [sym_quoting_lit] = STATE(2205), + [sym_syn_quoting_lit] = STATE(2205), + [sym_unquote_splicing_lit] = STATE(2205), + [sym_unquoting_lit] = STATE(2205), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2205), + [sym_package_lit] = STATE(2205), + [sym_include_reader_macro] = STATE(2205), + [sym_complex_num_lit] = STATE(2205), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2174), + [sym_comment] = ACTIONS(2174), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2177), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2177), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2177), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2179), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [99] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2198), + [sym_num_lit] = STATE(2198), + [sym_kwd_lit] = STATE(2198), + [sym_str_lit] = STATE(2198), + [sym_char_lit] = STATE(2198), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2198), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2198), + [sym_set_lit] = STATE(2198), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2198), + [sym_splicing_read_cond_lit] = STATE(2198), + [sym_var_quoting_lit] = STATE(2198), + [sym_quoting_lit] = STATE(2198), + [sym_syn_quoting_lit] = STATE(2198), + [sym_unquote_splicing_lit] = STATE(2198), + [sym_unquoting_lit] = STATE(2198), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2198), + [sym_package_lit] = STATE(2198), + [sym_include_reader_macro] = STATE(2198), + [sym_complex_num_lit] = STATE(2198), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2174), + [sym_comment] = ACTIONS(2174), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2181), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2181), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2181), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2183), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [100] = { + [sym__gap] = STATE(48), + [sym_dis_expr] = STATE(48), + [sym__form] = STATE(2257), + [sym_num_lit] = STATE(2257), + [sym_kwd_lit] = STATE(2257), + [sym_str_lit] = STATE(2257), + [sym_char_lit] = STATE(2257), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2257), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2257), + [sym_set_lit] = STATE(2257), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2257), + [sym_splicing_read_cond_lit] = STATE(2257), + [sym_var_quoting_lit] = STATE(2257), + [sym_quoting_lit] = STATE(2257), + [sym_syn_quoting_lit] = STATE(2257), + [sym_unquote_splicing_lit] = STATE(2257), + [sym_unquoting_lit] = STATE(2257), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2257), + [sym_package_lit] = STATE(2257), + [sym_include_reader_macro] = STATE(2257), + [sym_complex_num_lit] = STATE(2257), + [aux_sym_dis_expr_repeat1] = STATE(48), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2185), + [sym_comment] = ACTIONS(2185), + [anon_sym_POUND_] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2191), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2191), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_POUND_CARET] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2191), + [anon_sym_cl] = ACTIONS(2207), + [aux_sym_accumulation_verb_token1] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_and] = ACTIONS(2210), + [anon_sym_as] = ACTIONS(2210), + [anon_sym_with] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_until] = ACTIONS(2210), + [anon_sym_repeat] = ACTIONS(2210), + [anon_sym_when] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_unless] = ACTIONS(2210), + [anon_sym_always] = ACTIONS(2210), + [anon_sym_thereis] = ACTIONS(2210), + [anon_sym_never] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2210), + [anon_sym_finally] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_initially] = ACTIONS(2210), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2212), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [101] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2315), + [sym_num_lit] = STATE(2315), + [sym_kwd_lit] = STATE(2315), + [sym_str_lit] = STATE(2315), + [sym_char_lit] = STATE(2315), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2315), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2315), + [sym_set_lit] = STATE(2315), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2315), + [sym_splicing_read_cond_lit] = STATE(2315), + [sym_var_quoting_lit] = STATE(2315), + [sym_quoting_lit] = STATE(2315), + [sym_syn_quoting_lit] = STATE(2315), + [sym_unquote_splicing_lit] = STATE(2315), + [sym_unquoting_lit] = STATE(2315), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2315), + [sym_package_lit] = STATE(2315), + [sym_include_reader_macro] = STATE(2315), + [sym_complex_num_lit] = STATE(2315), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2214), + [sym_comment] = ACTIONS(2214), + [anon_sym_POUND_] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2217), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2217), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_POUND_CARET] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2217), + [anon_sym_cl] = ACTIONS(2207), + [aux_sym_accumulation_verb_token1] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_and] = ACTIONS(2210), + [anon_sym_as] = ACTIONS(2210), + [anon_sym_with] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_until] = ACTIONS(2210), + [anon_sym_repeat] = ACTIONS(2210), + [anon_sym_when] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_unless] = ACTIONS(2210), + [anon_sym_always] = ACTIONS(2210), + [anon_sym_thereis] = ACTIONS(2210), + [anon_sym_never] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2210), + [anon_sym_finally] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_initially] = ACTIONS(2210), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2219), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [102] = { + [sym__gap] = STATE(171), + [sym_dis_expr] = STATE(171), + [sym__form] = STATE(2381), + [sym_num_lit] = STATE(2381), + [sym_kwd_lit] = STATE(2381), + [sym_str_lit] = STATE(2381), + [sym_char_lit] = STATE(2381), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2381), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2381), + [sym_set_lit] = STATE(2381), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2381), + [sym_splicing_read_cond_lit] = STATE(2381), + [sym_var_quoting_lit] = STATE(2381), + [sym_quoting_lit] = STATE(2381), + [sym_syn_quoting_lit] = STATE(2381), + [sym_unquote_splicing_lit] = STATE(2381), + [sym_unquoting_lit] = STATE(2381), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2381), + [sym_package_lit] = STATE(2381), + [sym_include_reader_macro] = STATE(2381), + [sym_complex_num_lit] = STATE(2381), + [aux_sym_dis_expr_repeat1] = STATE(171), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2221), + [sym_comment] = ACTIONS(2221), + [anon_sym_POUND_] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2224), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2224), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_POUND_CARET] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2224), + [anon_sym_cl] = ACTIONS(2086), + [aux_sym_accumulation_verb_token1] = ACTIONS(497), + [anon_sym_for] = ACTIONS(497), + [anon_sym_and] = ACTIONS(497), + [anon_sym_as] = ACTIONS(497), + [anon_sym_with] = ACTIONS(497), + [anon_sym_do] = ACTIONS(497), + [anon_sym_while] = ACTIONS(497), + [anon_sym_until] = ACTIONS(497), + [anon_sym_repeat] = ACTIONS(497), + [anon_sym_when] = ACTIONS(497), + [anon_sym_if] = ACTIONS(497), + [anon_sym_unless] = ACTIONS(497), + [anon_sym_always] = ACTIONS(497), + [anon_sym_thereis] = ACTIONS(497), + [anon_sym_never] = ACTIONS(497), + [anon_sym_else] = ACTIONS(497), + [anon_sym_finally] = ACTIONS(497), + [anon_sym_return] = ACTIONS(497), + [anon_sym_initially] = ACTIONS(497), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2226), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [103] = { + [sym__gap] = STATE(237), + [sym_dis_expr] = STATE(237), + [sym__form] = STATE(2047), + [sym_num_lit] = STATE(2047), + [sym_kwd_lit] = STATE(2047), + [sym_str_lit] = STATE(2047), + [sym_char_lit] = STATE(2047), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2047), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2047), + [sym_set_lit] = STATE(2047), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2047), + [sym_splicing_read_cond_lit] = STATE(2047), + [sym_var_quoting_lit] = STATE(2047), + [sym_quoting_lit] = STATE(2047), + [sym_syn_quoting_lit] = STATE(2047), + [sym_unquote_splicing_lit] = STATE(2047), + [sym_unquoting_lit] = STATE(2047), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2047), + [sym_package_lit] = STATE(2047), + [sym_include_reader_macro] = STATE(2047), + [sym_complex_num_lit] = STATE(2047), + [aux_sym_dis_expr_repeat1] = STATE(237), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2228), + [sym_comment] = ACTIONS(2228), + [anon_sym_POUND_] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2231), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2231), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_POUND_CARET] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2231), + [anon_sym_cl] = ACTIONS(1804), + [aux_sym_accumulation_verb_token1] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_and] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_until] = ACTIONS(1807), + [anon_sym_repeat] = ACTIONS(1807), + [anon_sym_when] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_unless] = ACTIONS(1807), + [anon_sym_always] = ACTIONS(1807), + [anon_sym_thereis] = ACTIONS(1807), + [anon_sym_never] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_finally] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_initially] = ACTIONS(1807), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2233), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [104] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2307), + [sym_num_lit] = STATE(2307), + [sym_kwd_lit] = STATE(2307), + [sym_str_lit] = STATE(2307), + [sym_char_lit] = STATE(2307), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2307), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2307), + [sym_set_lit] = STATE(2307), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2307), + [sym_splicing_read_cond_lit] = STATE(2307), + [sym_var_quoting_lit] = STATE(2307), + [sym_quoting_lit] = STATE(2307), + [sym_syn_quoting_lit] = STATE(2307), + [sym_unquote_splicing_lit] = STATE(2307), + [sym_unquoting_lit] = STATE(2307), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2307), + [sym_package_lit] = STATE(2307), + [sym_include_reader_macro] = STATE(2307), + [sym_complex_num_lit] = STATE(2307), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2235), + [sym_comment] = ACTIONS(2235), + [anon_sym_POUND_] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2241), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2241), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_POUND_CARET] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2241), + [anon_sym_cl] = ACTIONS(2257), + [aux_sym_accumulation_verb_token1] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_and] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_until] = ACTIONS(2260), + [anon_sym_repeat] = ACTIONS(2260), + [anon_sym_when] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_unless] = ACTIONS(2260), + [anon_sym_always] = ACTIONS(2260), + [anon_sym_thereis] = ACTIONS(2260), + [anon_sym_never] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_finally] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_initially] = ACTIONS(2260), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2262), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [105] = { + [sym__gap] = STATE(164), + [sym_dis_expr] = STATE(164), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2107), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2107), + [sym_set_lit] = STATE(2107), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(164), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2264), + [sym_comment] = ACTIONS(2264), + [anon_sym_POUND_] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2270), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2270), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_POUND_CARET] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2270), + [anon_sym_cl] = ACTIONS(2286), + [aux_sym_accumulation_verb_token1] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_and] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_until] = ACTIONS(2289), + [anon_sym_repeat] = ACTIONS(2289), + [anon_sym_when] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_unless] = ACTIONS(2289), + [anon_sym_always] = ACTIONS(2289), + [anon_sym_thereis] = ACTIONS(2289), + [anon_sym_never] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_finally] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_initially] = ACTIONS(2289), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2291), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [106] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2352), + [sym_num_lit] = STATE(2352), + [sym_kwd_lit] = STATE(2352), + [sym_str_lit] = STATE(2352), + [sym_char_lit] = STATE(2352), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2352), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2352), + [sym_set_lit] = STATE(2352), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2352), + [sym_splicing_read_cond_lit] = STATE(2352), + [sym_var_quoting_lit] = STATE(2352), + [sym_quoting_lit] = STATE(2352), + [sym_syn_quoting_lit] = STATE(2352), + [sym_unquote_splicing_lit] = STATE(2352), + [sym_unquoting_lit] = STATE(2352), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2352), + [sym_package_lit] = STATE(2352), + [sym_include_reader_macro] = STATE(2352), + [sym_complex_num_lit] = STATE(2352), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2214), + [sym_comment] = ACTIONS(2214), + [anon_sym_POUND_] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2293), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2293), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_POUND_CARET] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2293), + [anon_sym_cl] = ACTIONS(2207), + [aux_sym_accumulation_verb_token1] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_and] = ACTIONS(2210), + [anon_sym_as] = ACTIONS(2210), + [anon_sym_with] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_until] = ACTIONS(2210), + [anon_sym_repeat] = ACTIONS(2210), + [anon_sym_when] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_unless] = ACTIONS(2210), + [anon_sym_always] = ACTIONS(2210), + [anon_sym_thereis] = ACTIONS(2210), + [anon_sym_never] = ACTIONS(2210), + [anon_sym_else] = ACTIONS(2210), + [anon_sym_finally] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_initially] = ACTIONS(2210), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2295), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [107] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2232), + [sym_num_lit] = STATE(2232), + [sym_kwd_lit] = STATE(2232), + [sym_str_lit] = STATE(2232), + [sym_char_lit] = STATE(2232), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2232), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2232), + [sym_set_lit] = STATE(2232), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2232), + [sym_splicing_read_cond_lit] = STATE(2232), + [sym_var_quoting_lit] = STATE(2232), + [sym_quoting_lit] = STATE(2232), + [sym_syn_quoting_lit] = STATE(2232), + [sym_unquote_splicing_lit] = STATE(2232), + [sym_unquoting_lit] = STATE(2232), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2232), + [sym_package_lit] = STATE(2232), + [sym_include_reader_macro] = STATE(2232), + [sym_complex_num_lit] = STATE(2232), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2297), + [sym_comment] = ACTIONS(2297), + [anon_sym_POUND_] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2303), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2303), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2308), + [anon_sym_POUND_CARET] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2303), + [anon_sym_cl] = ACTIONS(2319), + [aux_sym_accumulation_verb_token1] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_and] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_with] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_until] = ACTIONS(2322), + [anon_sym_repeat] = ACTIONS(2322), + [anon_sym_when] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_unless] = ACTIONS(2322), + [anon_sym_always] = ACTIONS(2322), + [anon_sym_thereis] = ACTIONS(2322), + [anon_sym_never] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_finally] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_initially] = ACTIONS(2322), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2324), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [108] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2373), + [sym_num_lit] = STATE(2373), + [sym_kwd_lit] = STATE(2373), + [sym_str_lit] = STATE(2373), + [sym_char_lit] = STATE(2373), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2373), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2373), + [sym_set_lit] = STATE(2373), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2373), + [sym_splicing_read_cond_lit] = STATE(2373), + [sym_var_quoting_lit] = STATE(2373), + [sym_quoting_lit] = STATE(2373), + [sym_syn_quoting_lit] = STATE(2373), + [sym_unquote_splicing_lit] = STATE(2373), + [sym_unquoting_lit] = STATE(2373), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2373), + [sym_package_lit] = STATE(2373), + [sym_include_reader_macro] = STATE(2373), + [sym_complex_num_lit] = STATE(2373), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2326), + [sym_comment] = ACTIONS(2326), + [anon_sym_POUND_] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2332), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2332), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_POUND_CARET] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2332), + [anon_sym_cl] = ACTIONS(2348), + [aux_sym_accumulation_verb_token1] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_and] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_with] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_until] = ACTIONS(2351), + [anon_sym_repeat] = ACTIONS(2351), + [anon_sym_when] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_unless] = ACTIONS(2351), + [anon_sym_always] = ACTIONS(2351), + [anon_sym_thereis] = ACTIONS(2351), + [anon_sym_never] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_finally] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_initially] = ACTIONS(2351), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2353), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [109] = { + [sym__gap] = STATE(194), + [sym_dis_expr] = STATE(194), + [sym__form] = STATE(2372), + [sym_num_lit] = STATE(2372), + [sym_kwd_lit] = STATE(2372), + [sym_str_lit] = STATE(2372), + [sym_char_lit] = STATE(2372), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2372), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2372), + [sym_set_lit] = STATE(2372), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2372), + [sym_splicing_read_cond_lit] = STATE(2372), + [sym_var_quoting_lit] = STATE(2372), + [sym_quoting_lit] = STATE(2372), + [sym_syn_quoting_lit] = STATE(2372), + [sym_unquote_splicing_lit] = STATE(2372), + [sym_unquoting_lit] = STATE(2372), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2372), + [sym_package_lit] = STATE(2372), + [sym_include_reader_macro] = STATE(2372), + [sym_complex_num_lit] = STATE(2372), + [aux_sym_dis_expr_repeat1] = STATE(194), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2355), + [sym_comment] = ACTIONS(2355), + [anon_sym_POUND_] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2358), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2358), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_POUND_CARET] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2358), + [anon_sym_cl] = ACTIONS(2348), + [aux_sym_accumulation_verb_token1] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_and] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_with] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_until] = ACTIONS(2351), + [anon_sym_repeat] = ACTIONS(2351), + [anon_sym_when] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_unless] = ACTIONS(2351), + [anon_sym_always] = ACTIONS(2351), + [anon_sym_thereis] = ACTIONS(2351), + [anon_sym_never] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_finally] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_initially] = ACTIONS(2351), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2360), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [110] = { + [sym__gap] = STATE(198), + [sym_dis_expr] = STATE(198), + [sym__form] = STATE(2370), + [sym_num_lit] = STATE(2370), + [sym_kwd_lit] = STATE(2370), + [sym_str_lit] = STATE(2370), + [sym_char_lit] = STATE(2370), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2370), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2370), + [sym_set_lit] = STATE(2370), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2370), + [sym_splicing_read_cond_lit] = STATE(2370), + [sym_var_quoting_lit] = STATE(2370), + [sym_quoting_lit] = STATE(2370), + [sym_syn_quoting_lit] = STATE(2370), + [sym_unquote_splicing_lit] = STATE(2370), + [sym_unquoting_lit] = STATE(2370), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2370), + [sym_package_lit] = STATE(2370), + [sym_include_reader_macro] = STATE(2370), + [sym_complex_num_lit] = STATE(2370), + [aux_sym_dis_expr_repeat1] = STATE(198), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2362), + [sym_comment] = ACTIONS(2362), + [anon_sym_POUND_] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2368), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2368), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_POUND_CARET] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2368), + [anon_sym_cl] = ACTIONS(2384), + [aux_sym_accumulation_verb_token1] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_and] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_with] = ACTIONS(2387), + [anon_sym_do] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_until] = ACTIONS(2387), + [anon_sym_repeat] = ACTIONS(2387), + [anon_sym_when] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_unless] = ACTIONS(2387), + [anon_sym_always] = ACTIONS(2387), + [anon_sym_thereis] = ACTIONS(2387), + [anon_sym_never] = ACTIONS(2387), + [anon_sym_else] = ACTIONS(2387), + [anon_sym_finally] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_initially] = ACTIONS(2387), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2389), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [111] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2368), + [sym_num_lit] = STATE(2368), + [sym_kwd_lit] = STATE(2368), + [sym_str_lit] = STATE(2368), + [sym_char_lit] = STATE(2368), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2368), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2368), + [sym_set_lit] = STATE(2368), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2368), + [sym_splicing_read_cond_lit] = STATE(2368), + [sym_var_quoting_lit] = STATE(2368), + [sym_quoting_lit] = STATE(2368), + [sym_syn_quoting_lit] = STATE(2368), + [sym_unquote_splicing_lit] = STATE(2368), + [sym_unquoting_lit] = STATE(2368), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2368), + [sym_package_lit] = STATE(2368), + [sym_include_reader_macro] = STATE(2368), + [sym_complex_num_lit] = STATE(2368), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2391), + [sym_comment] = ACTIONS(2391), + [anon_sym_POUND_] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2394), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2394), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_POUND_CARET] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2394), + [anon_sym_cl] = ACTIONS(2384), + [aux_sym_accumulation_verb_token1] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_and] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_with] = ACTIONS(2387), + [anon_sym_do] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_until] = ACTIONS(2387), + [anon_sym_repeat] = ACTIONS(2387), + [anon_sym_when] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_unless] = ACTIONS(2387), + [anon_sym_always] = ACTIONS(2387), + [anon_sym_thereis] = ACTIONS(2387), + [anon_sym_never] = ACTIONS(2387), + [anon_sym_else] = ACTIONS(2387), + [anon_sym_finally] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_initially] = ACTIONS(2387), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2396), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [112] = { + [sym__gap] = STATE(202), + [sym_dis_expr] = STATE(202), + [sym__form] = STATE(2366), + [sym_num_lit] = STATE(2366), + [sym_kwd_lit] = STATE(2366), + [sym_str_lit] = STATE(2366), + [sym_char_lit] = STATE(2366), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2366), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2366), + [sym_set_lit] = STATE(2366), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2366), + [sym_splicing_read_cond_lit] = STATE(2366), + [sym_var_quoting_lit] = STATE(2366), + [sym_quoting_lit] = STATE(2366), + [sym_syn_quoting_lit] = STATE(2366), + [sym_unquote_splicing_lit] = STATE(2366), + [sym_unquoting_lit] = STATE(2366), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2366), + [sym_package_lit] = STATE(2366), + [sym_include_reader_macro] = STATE(2366), + [sym_complex_num_lit] = STATE(2366), + [aux_sym_dis_expr_repeat1] = STATE(202), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2398), + [sym_comment] = ACTIONS(2398), + [anon_sym_POUND_] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2401), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2401), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2373), + [anon_sym_POUND_CARET] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2401), + [anon_sym_cl] = ACTIONS(2384), + [aux_sym_accumulation_verb_token1] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_and] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_with] = ACTIONS(2387), + [anon_sym_do] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_until] = ACTIONS(2387), + [anon_sym_repeat] = ACTIONS(2387), + [anon_sym_when] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_unless] = ACTIONS(2387), + [anon_sym_always] = ACTIONS(2387), + [anon_sym_thereis] = ACTIONS(2387), + [anon_sym_never] = ACTIONS(2387), + [anon_sym_else] = ACTIONS(2387), + [anon_sym_finally] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_initially] = ACTIONS(2387), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2403), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [113] = { + [sym__gap] = STATE(152), + [sym_dis_expr] = STATE(152), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2112), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2112), + [sym_set_lit] = STATE(2112), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(152), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2405), + [sym_comment] = ACTIONS(2405), + [anon_sym_POUND_] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2411), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2413), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2411), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_POUND_CARET] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2411), + [anon_sym_cl] = ACTIONS(2427), + [aux_sym_accumulation_verb_token1] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_and] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_until] = ACTIONS(2430), + [anon_sym_repeat] = ACTIONS(2430), + [anon_sym_when] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_unless] = ACTIONS(2430), + [anon_sym_always] = ACTIONS(2430), + [anon_sym_thereis] = ACTIONS(2430), + [anon_sym_never] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_finally] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_initially] = ACTIONS(2430), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2432), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [114] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2106), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2106), + [sym_set_lit] = STATE(2106), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2434), + [sym_comment] = ACTIONS(2434), + [anon_sym_POUND_] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2440), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2440), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_POUND_CARET] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2440), + [anon_sym_cl] = ACTIONS(2456), + [aux_sym_accumulation_verb_token1] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_and] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_with] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_until] = ACTIONS(2459), + [anon_sym_repeat] = ACTIONS(2459), + [anon_sym_when] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_unless] = ACTIONS(2459), + [anon_sym_always] = ACTIONS(2459), + [anon_sym_thereis] = ACTIONS(2459), + [anon_sym_never] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_initially] = ACTIONS(2459), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2461), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [115] = { + [sym__gap] = STATE(205), + [sym_dis_expr] = STATE(205), + [sym__form] = STATE(2364), + [sym_num_lit] = STATE(2364), + [sym_kwd_lit] = STATE(2364), + [sym_str_lit] = STATE(2364), + [sym_char_lit] = STATE(2364), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2364), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2364), + [sym_set_lit] = STATE(2364), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2364), + [sym_splicing_read_cond_lit] = STATE(2364), + [sym_var_quoting_lit] = STATE(2364), + [sym_quoting_lit] = STATE(2364), + [sym_syn_quoting_lit] = STATE(2364), + [sym_unquote_splicing_lit] = STATE(2364), + [sym_unquoting_lit] = STATE(2364), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2364), + [sym_package_lit] = STATE(2364), + [sym_include_reader_macro] = STATE(2364), + [sym_complex_num_lit] = STATE(2364), + [aux_sym_dis_expr_repeat1] = STATE(205), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2463), + [sym_comment] = ACTIONS(2463), + [anon_sym_POUND_] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2466), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2466), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_POUND_CARET] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2466), + [anon_sym_cl] = ACTIONS(2348), + [aux_sym_accumulation_verb_token1] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_and] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_with] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_until] = ACTIONS(2351), + [anon_sym_repeat] = ACTIONS(2351), + [anon_sym_when] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_unless] = ACTIONS(2351), + [anon_sym_always] = ACTIONS(2351), + [anon_sym_thereis] = ACTIONS(2351), + [anon_sym_never] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_finally] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_initially] = ACTIONS(2351), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2468), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [116] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2362), + [sym_num_lit] = STATE(2362), + [sym_kwd_lit] = STATE(2362), + [sym_str_lit] = STATE(2362), + [sym_char_lit] = STATE(2362), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2362), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2362), + [sym_set_lit] = STATE(2362), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2362), + [sym_splicing_read_cond_lit] = STATE(2362), + [sym_var_quoting_lit] = STATE(2362), + [sym_quoting_lit] = STATE(2362), + [sym_syn_quoting_lit] = STATE(2362), + [sym_unquote_splicing_lit] = STATE(2362), + [sym_unquoting_lit] = STATE(2362), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2362), + [sym_package_lit] = STATE(2362), + [sym_include_reader_macro] = STATE(2362), + [sym_complex_num_lit] = STATE(2362), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2326), + [sym_comment] = ACTIONS(2326), + [anon_sym_POUND_] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2470), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2470), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2337), + [anon_sym_POUND_CARET] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2346), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2470), + [anon_sym_cl] = ACTIONS(2348), + [aux_sym_accumulation_verb_token1] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_and] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_with] = ACTIONS(2351), + [anon_sym_do] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_until] = ACTIONS(2351), + [anon_sym_repeat] = ACTIONS(2351), + [anon_sym_when] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_unless] = ACTIONS(2351), + [anon_sym_always] = ACTIONS(2351), + [anon_sym_thereis] = ACTIONS(2351), + [anon_sym_never] = ACTIONS(2351), + [anon_sym_else] = ACTIONS(2351), + [anon_sym_finally] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_initially] = ACTIONS(2351), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2472), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [117] = { + [sym__gap] = STATE(211), + [sym_dis_expr] = STATE(211), + [sym__form] = STATE(2360), + [sym_num_lit] = STATE(2360), + [sym_kwd_lit] = STATE(2360), + [sym_str_lit] = STATE(2360), + [sym_char_lit] = STATE(2360), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2360), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2360), + [sym_set_lit] = STATE(2360), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2360), + [sym_splicing_read_cond_lit] = STATE(2360), + [sym_var_quoting_lit] = STATE(2360), + [sym_quoting_lit] = STATE(2360), + [sym_syn_quoting_lit] = STATE(2360), + [sym_unquote_splicing_lit] = STATE(2360), + [sym_unquoting_lit] = STATE(2360), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2360), + [sym_package_lit] = STATE(2360), + [sym_include_reader_macro] = STATE(2360), + [sym_complex_num_lit] = STATE(2360), + [aux_sym_dis_expr_repeat1] = STATE(211), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2474), + [sym_comment] = ACTIONS(2474), + [anon_sym_POUND_] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2480), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2482), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2480), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2485), + [anon_sym_POUND_CARET] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2480), + [anon_sym_cl] = ACTIONS(2496), + [aux_sym_accumulation_verb_token1] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_and] = ACTIONS(2499), + [anon_sym_as] = ACTIONS(2499), + [anon_sym_with] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_until] = ACTIONS(2499), + [anon_sym_repeat] = ACTIONS(2499), + [anon_sym_when] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_unless] = ACTIONS(2499), + [anon_sym_always] = ACTIONS(2499), + [anon_sym_thereis] = ACTIONS(2499), + [anon_sym_never] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_finally] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_initially] = ACTIONS(2499), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2501), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [118] = { + [sym__gap] = STATE(178), + [sym_dis_expr] = STATE(178), + [sym__form] = STATE(2063), + [sym_num_lit] = STATE(2063), + [sym_kwd_lit] = STATE(2063), + [sym_str_lit] = STATE(2063), + [sym_char_lit] = STATE(2063), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2063), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2063), + [sym_set_lit] = STATE(2063), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2063), + [sym_splicing_read_cond_lit] = STATE(2063), + [sym_var_quoting_lit] = STATE(2063), + [sym_quoting_lit] = STATE(2063), + [sym_syn_quoting_lit] = STATE(2063), + [sym_unquote_splicing_lit] = STATE(2063), + [sym_unquoting_lit] = STATE(2063), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2063), + [sym_package_lit] = STATE(2063), + [sym_include_reader_macro] = STATE(2063), + [sym_complex_num_lit] = STATE(2063), + [aux_sym_dis_expr_repeat1] = STATE(178), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2503), + [sym_comment] = ACTIONS(2503), + [anon_sym_POUND_] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2506), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2506), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_POUND_CARET] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2506), + [anon_sym_cl] = ACTIONS(2456), + [aux_sym_accumulation_verb_token1] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_and] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_with] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_until] = ACTIONS(2459), + [anon_sym_repeat] = ACTIONS(2459), + [anon_sym_when] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_unless] = ACTIONS(2459), + [anon_sym_always] = ACTIONS(2459), + [anon_sym_thereis] = ACTIONS(2459), + [anon_sym_never] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_initially] = ACTIONS(2459), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2508), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [119] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2310), + [sym_num_lit] = STATE(2310), + [sym_kwd_lit] = STATE(2310), + [sym_str_lit] = STATE(2310), + [sym_char_lit] = STATE(2310), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2310), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2310), + [sym_set_lit] = STATE(2310), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2310), + [sym_splicing_read_cond_lit] = STATE(2310), + [sym_var_quoting_lit] = STATE(2310), + [sym_quoting_lit] = STATE(2310), + [sym_syn_quoting_lit] = STATE(2310), + [sym_unquote_splicing_lit] = STATE(2310), + [sym_unquoting_lit] = STATE(2310), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2310), + [sym_package_lit] = STATE(2310), + [sym_include_reader_macro] = STATE(2310), + [sym_complex_num_lit] = STATE(2310), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2235), + [sym_comment] = ACTIONS(2235), + [anon_sym_POUND_] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2510), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2510), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_POUND_CARET] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2510), + [anon_sym_cl] = ACTIONS(2257), + [aux_sym_accumulation_verb_token1] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_and] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_until] = ACTIONS(2260), + [anon_sym_repeat] = ACTIONS(2260), + [anon_sym_when] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_unless] = ACTIONS(2260), + [anon_sym_always] = ACTIONS(2260), + [anon_sym_thereis] = ACTIONS(2260), + [anon_sym_never] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_finally] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_initially] = ACTIONS(2260), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2512), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [120] = { + [sym__gap] = STATE(220), + [sym_dis_expr] = STATE(220), + [sym__form] = STATE(2313), + [sym_num_lit] = STATE(2313), + [sym_kwd_lit] = STATE(2313), + [sym_str_lit] = STATE(2313), + [sym_char_lit] = STATE(2313), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2313), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2313), + [sym_set_lit] = STATE(2313), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2313), + [sym_splicing_read_cond_lit] = STATE(2313), + [sym_var_quoting_lit] = STATE(2313), + [sym_quoting_lit] = STATE(2313), + [sym_syn_quoting_lit] = STATE(2313), + [sym_unquote_splicing_lit] = STATE(2313), + [sym_unquoting_lit] = STATE(2313), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2313), + [sym_package_lit] = STATE(2313), + [sym_include_reader_macro] = STATE(2313), + [sym_complex_num_lit] = STATE(2313), + [aux_sym_dis_expr_repeat1] = STATE(220), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2514), + [sym_comment] = ACTIONS(2514), + [anon_sym_POUND_] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2520), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2520), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_POUND_CARET] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2520), + [anon_sym_cl] = ACTIONS(2536), + [aux_sym_accumulation_verb_token1] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_and] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_with] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_until] = ACTIONS(2539), + [anon_sym_repeat] = ACTIONS(2539), + [anon_sym_when] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_unless] = ACTIONS(2539), + [anon_sym_always] = ACTIONS(2539), + [anon_sym_thereis] = ACTIONS(2539), + [anon_sym_never] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_finally] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_initially] = ACTIONS(2539), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2541), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [121] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2330), + [sym_num_lit] = STATE(2330), + [sym_kwd_lit] = STATE(2330), + [sym_str_lit] = STATE(2330), + [sym_char_lit] = STATE(2330), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2330), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2330), + [sym_set_lit] = STATE(2330), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2330), + [sym_splicing_read_cond_lit] = STATE(2330), + [sym_var_quoting_lit] = STATE(2330), + [sym_quoting_lit] = STATE(2330), + [sym_syn_quoting_lit] = STATE(2330), + [sym_unquote_splicing_lit] = STATE(2330), + [sym_unquoting_lit] = STATE(2330), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2330), + [sym_package_lit] = STATE(2330), + [sym_include_reader_macro] = STATE(2330), + [sym_complex_num_lit] = STATE(2330), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2543), + [sym_comment] = ACTIONS(2543), + [anon_sym_POUND_] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2546), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2546), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_POUND_CARET] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2546), + [anon_sym_cl] = ACTIONS(2536), + [aux_sym_accumulation_verb_token1] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_and] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_with] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_until] = ACTIONS(2539), + [anon_sym_repeat] = ACTIONS(2539), + [anon_sym_when] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_unless] = ACTIONS(2539), + [anon_sym_always] = ACTIONS(2539), + [anon_sym_thereis] = ACTIONS(2539), + [anon_sym_never] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_finally] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_initially] = ACTIONS(2539), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2548), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [122] = { + [sym__gap] = STATE(213), + [sym_dis_expr] = STATE(213), + [sym__form] = STATE(2355), + [sym_num_lit] = STATE(2355), + [sym_kwd_lit] = STATE(2355), + [sym_str_lit] = STATE(2355), + [sym_char_lit] = STATE(2355), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2355), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2355), + [sym_set_lit] = STATE(2355), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2355), + [sym_splicing_read_cond_lit] = STATE(2355), + [sym_var_quoting_lit] = STATE(2355), + [sym_quoting_lit] = STATE(2355), + [sym_syn_quoting_lit] = STATE(2355), + [sym_unquote_splicing_lit] = STATE(2355), + [sym_unquoting_lit] = STATE(2355), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2355), + [sym_package_lit] = STATE(2355), + [sym_include_reader_macro] = STATE(2355), + [sym_complex_num_lit] = STATE(2355), + [aux_sym_dis_expr_repeat1] = STATE(213), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2550), + [sym_comment] = ACTIONS(2550), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2553), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2553), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2553), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2555), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [123] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2353), + [sym_num_lit] = STATE(2353), + [sym_kwd_lit] = STATE(2353), + [sym_str_lit] = STATE(2353), + [sym_char_lit] = STATE(2353), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2353), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2353), + [sym_set_lit] = STATE(2353), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2353), + [sym_splicing_read_cond_lit] = STATE(2353), + [sym_var_quoting_lit] = STATE(2353), + [sym_quoting_lit] = STATE(2353), + [sym_syn_quoting_lit] = STATE(2353), + [sym_unquote_splicing_lit] = STATE(2353), + [sym_unquoting_lit] = STATE(2353), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2353), + [sym_package_lit] = STATE(2353), + [sym_include_reader_macro] = STATE(2353), + [sym_complex_num_lit] = STATE(2353), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1923), + [sym_comment] = ACTIONS(1923), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2557), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2557), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2557), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2559), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [124] = { + [sym__gap] = STATE(224), + [sym_dis_expr] = STATE(224), + [sym__form] = STATE(2351), + [sym_num_lit] = STATE(2351), + [sym_kwd_lit] = STATE(2351), + [sym_str_lit] = STATE(2351), + [sym_char_lit] = STATE(2351), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2351), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2351), + [sym_set_lit] = STATE(2351), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2351), + [sym_splicing_read_cond_lit] = STATE(2351), + [sym_var_quoting_lit] = STATE(2351), + [sym_quoting_lit] = STATE(2351), + [sym_syn_quoting_lit] = STATE(2351), + [sym_unquote_splicing_lit] = STATE(2351), + [sym_unquoting_lit] = STATE(2351), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2351), + [sym_package_lit] = STATE(2351), + [sym_include_reader_macro] = STATE(2351), + [sym_complex_num_lit] = STATE(2351), + [aux_sym_dis_expr_repeat1] = STATE(224), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2561), + [sym_comment] = ACTIONS(2561), + [anon_sym_POUND_] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2564), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1945), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2564), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1948), + [anon_sym_POUND_CARET] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2564), + [anon_sym_cl] = ACTIONS(1959), + [aux_sym_accumulation_verb_token1] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_as] = ACTIONS(1962), + [anon_sym_with] = ACTIONS(1962), + [anon_sym_do] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_until] = ACTIONS(1962), + [anon_sym_repeat] = ACTIONS(1962), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_unless] = ACTIONS(1962), + [anon_sym_always] = ACTIONS(1962), + [anon_sym_thereis] = ACTIONS(1962), + [anon_sym_never] = ACTIONS(1962), + [anon_sym_else] = ACTIONS(1962), + [anon_sym_finally] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_initially] = ACTIONS(1962), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2566), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [125] = { + [sym__gap] = STATE(246), + [sym_dis_expr] = STATE(246), + [sym__form] = STATE(2312), + [sym_num_lit] = STATE(2312), + [sym_kwd_lit] = STATE(2312), + [sym_str_lit] = STATE(2312), + [sym_char_lit] = STATE(2312), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2312), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2312), + [sym_set_lit] = STATE(2312), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2312), + [sym_splicing_read_cond_lit] = STATE(2312), + [sym_var_quoting_lit] = STATE(2312), + [sym_quoting_lit] = STATE(2312), + [sym_syn_quoting_lit] = STATE(2312), + [sym_unquote_splicing_lit] = STATE(2312), + [sym_unquoting_lit] = STATE(2312), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2312), + [sym_package_lit] = STATE(2312), + [sym_include_reader_macro] = STATE(2312), + [sym_complex_num_lit] = STATE(2312), + [aux_sym_dis_expr_repeat1] = STATE(246), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2568), + [sym_comment] = ACTIONS(2568), + [anon_sym_POUND_] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2571), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2571), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_POUND_CARET] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2571), + [anon_sym_cl] = ACTIONS(2257), + [aux_sym_accumulation_verb_token1] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_and] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_until] = ACTIONS(2260), + [anon_sym_repeat] = ACTIONS(2260), + [anon_sym_when] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_unless] = ACTIONS(2260), + [anon_sym_always] = ACTIONS(2260), + [anon_sym_thereis] = ACTIONS(2260), + [anon_sym_never] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_finally] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_initially] = ACTIONS(2260), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2573), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [126] = { + [sym__gap] = STATE(228), + [sym_dis_expr] = STATE(228), + [sym__form] = STATE(2413), + [sym_num_lit] = STATE(2413), + [sym_kwd_lit] = STATE(2413), + [sym_str_lit] = STATE(2413), + [sym_char_lit] = STATE(2413), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2413), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2413), + [sym_set_lit] = STATE(2413), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2413), + [sym_splicing_read_cond_lit] = STATE(2413), + [sym_var_quoting_lit] = STATE(2413), + [sym_quoting_lit] = STATE(2413), + [sym_syn_quoting_lit] = STATE(2413), + [sym_unquote_splicing_lit] = STATE(2413), + [sym_unquoting_lit] = STATE(2413), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2413), + [sym_package_lit] = STATE(2413), + [sym_include_reader_macro] = STATE(2413), + [sym_complex_num_lit] = STATE(2413), + [aux_sym_dis_expr_repeat1] = STATE(228), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2575), + [sym_comment] = ACTIONS(2575), + [anon_sym_POUND_] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2578), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2578), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2525), + [anon_sym_POUND_CARET] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2578), + [anon_sym_cl] = ACTIONS(2536), + [aux_sym_accumulation_verb_token1] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_and] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_with] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_until] = ACTIONS(2539), + [anon_sym_repeat] = ACTIONS(2539), + [anon_sym_when] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_unless] = ACTIONS(2539), + [anon_sym_always] = ACTIONS(2539), + [anon_sym_thereis] = ACTIONS(2539), + [anon_sym_never] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_finally] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_initially] = ACTIONS(2539), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2580), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [127] = { + [sym__gap] = STATE(235), + [sym_dis_expr] = STATE(235), + [sym__form] = STATE(2345), + [sym_num_lit] = STATE(2345), + [sym_kwd_lit] = STATE(2345), + [sym_str_lit] = STATE(2345), + [sym_char_lit] = STATE(2345), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2345), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2345), + [sym_set_lit] = STATE(2345), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2345), + [sym_splicing_read_cond_lit] = STATE(2345), + [sym_var_quoting_lit] = STATE(2345), + [sym_quoting_lit] = STATE(2345), + [sym_syn_quoting_lit] = STATE(2345), + [sym_unquote_splicing_lit] = STATE(2345), + [sym_unquoting_lit] = STATE(2345), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2345), + [sym_package_lit] = STATE(2345), + [sym_include_reader_macro] = STATE(2345), + [sym_complex_num_lit] = STATE(2345), + [aux_sym_dis_expr_repeat1] = STATE(235), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2582), + [sym_comment] = ACTIONS(2582), + [anon_sym_POUND_] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2585), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2585), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_POUND_CARET] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2585), + [anon_sym_cl] = ACTIONS(1876), + [aux_sym_accumulation_verb_token1] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_and] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_until] = ACTIONS(1879), + [anon_sym_repeat] = ACTIONS(1879), + [anon_sym_when] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_unless] = ACTIONS(1879), + [anon_sym_always] = ACTIONS(1879), + [anon_sym_thereis] = ACTIONS(1879), + [anon_sym_never] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_finally] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_initially] = ACTIONS(1879), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2587), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [128] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2320), + [sym_num_lit] = STATE(2320), + [sym_kwd_lit] = STATE(2320), + [sym_str_lit] = STATE(2320), + [sym_char_lit] = STATE(2320), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2320), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2320), + [sym_set_lit] = STATE(2320), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2320), + [sym_splicing_read_cond_lit] = STATE(2320), + [sym_var_quoting_lit] = STATE(2320), + [sym_quoting_lit] = STATE(2320), + [sym_syn_quoting_lit] = STATE(2320), + [sym_unquote_splicing_lit] = STATE(2320), + [sym_unquoting_lit] = STATE(2320), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2320), + [sym_package_lit] = STATE(2320), + [sym_include_reader_macro] = STATE(2320), + [sym_complex_num_lit] = STATE(2320), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2589), + [sym_comment] = ACTIONS(2589), + [anon_sym_POUND_] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2595), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2597), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2595), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2600), + [anon_sym_POUND_CARET] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2595), + [anon_sym_cl] = ACTIONS(2611), + [aux_sym_accumulation_verb_token1] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2614), + [anon_sym_and] = ACTIONS(2614), + [anon_sym_as] = ACTIONS(2614), + [anon_sym_with] = ACTIONS(2614), + [anon_sym_do] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2614), + [anon_sym_until] = ACTIONS(2614), + [anon_sym_repeat] = ACTIONS(2614), + [anon_sym_when] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_unless] = ACTIONS(2614), + [anon_sym_always] = ACTIONS(2614), + [anon_sym_thereis] = ACTIONS(2614), + [anon_sym_never] = ACTIONS(2614), + [anon_sym_else] = ACTIONS(2614), + [anon_sym_finally] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_initially] = ACTIONS(2614), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2616), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [129] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2303), + [sym_num_lit] = STATE(2303), + [sym_kwd_lit] = STATE(2303), + [sym_str_lit] = STATE(2303), + [sym_char_lit] = STATE(2303), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2303), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2303), + [sym_set_lit] = STATE(2303), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2303), + [sym_splicing_read_cond_lit] = STATE(2303), + [sym_var_quoting_lit] = STATE(2303), + [sym_quoting_lit] = STATE(2303), + [sym_syn_quoting_lit] = STATE(2303), + [sym_unquote_splicing_lit] = STATE(2303), + [sym_unquoting_lit] = STATE(2303), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2303), + [sym_package_lit] = STATE(2303), + [sym_include_reader_macro] = STATE(2303), + [sym_complex_num_lit] = STATE(2303), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2618), + [sym_comment] = ACTIONS(2618), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2624), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2624), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2624), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2645), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [130] = { + [sym__gap] = STATE(251), + [sym_dis_expr] = STATE(251), + [sym__form] = STATE(2302), + [sym_num_lit] = STATE(2302), + [sym_kwd_lit] = STATE(2302), + [sym_str_lit] = STATE(2302), + [sym_char_lit] = STATE(2302), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2302), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2302), + [sym_set_lit] = STATE(2302), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2302), + [sym_splicing_read_cond_lit] = STATE(2302), + [sym_var_quoting_lit] = STATE(2302), + [sym_quoting_lit] = STATE(2302), + [sym_syn_quoting_lit] = STATE(2302), + [sym_unquote_splicing_lit] = STATE(2302), + [sym_unquoting_lit] = STATE(2302), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2302), + [sym_package_lit] = STATE(2302), + [sym_include_reader_macro] = STATE(2302), + [sym_complex_num_lit] = STATE(2302), + [aux_sym_dis_expr_repeat1] = STATE(251), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2647), + [sym_comment] = ACTIONS(2647), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2650), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2650), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2650), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2652), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [131] = { + [sym__gap] = STATE(252), + [sym_dis_expr] = STATE(252), + [sym__form] = STATE(2300), + [sym_num_lit] = STATE(2300), + [sym_kwd_lit] = STATE(2300), + [sym_str_lit] = STATE(2300), + [sym_char_lit] = STATE(2300), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2300), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2300), + [sym_set_lit] = STATE(2300), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2300), + [sym_splicing_read_cond_lit] = STATE(2300), + [sym_var_quoting_lit] = STATE(2300), + [sym_quoting_lit] = STATE(2300), + [sym_syn_quoting_lit] = STATE(2300), + [sym_unquote_splicing_lit] = STATE(2300), + [sym_unquoting_lit] = STATE(2300), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2300), + [sym_package_lit] = STATE(2300), + [sym_include_reader_macro] = STATE(2300), + [sym_complex_num_lit] = STATE(2300), + [aux_sym_dis_expr_repeat1] = STATE(252), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2654), + [sym_comment] = ACTIONS(2654), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2657), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2657), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2657), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2659), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [132] = { + [sym__gap] = STATE(45), + [sym_dis_expr] = STATE(45), + [sym__form] = STATE(2155), + [sym_num_lit] = STATE(2155), + [sym_kwd_lit] = STATE(2155), + [sym_str_lit] = STATE(2155), + [sym_char_lit] = STATE(2155), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2155), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2155), + [sym_set_lit] = STATE(2155), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2155), + [sym_splicing_read_cond_lit] = STATE(2155), + [sym_var_quoting_lit] = STATE(2155), + [sym_quoting_lit] = STATE(2155), + [sym_syn_quoting_lit] = STATE(2155), + [sym_unquote_splicing_lit] = STATE(2155), + [sym_unquoting_lit] = STATE(2155), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2155), + [sym_package_lit] = STATE(2155), + [sym_include_reader_macro] = STATE(2155), + [sym_complex_num_lit] = STATE(2155), + [aux_sym_dis_expr_repeat1] = STATE(45), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2661), + [sym_comment] = ACTIONS(2661), + [anon_sym_POUND_] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2664), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2664), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_POUND_CARET] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2664), + [anon_sym_cl] = ACTIONS(2456), + [aux_sym_accumulation_verb_token1] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_and] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_with] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_until] = ACTIONS(2459), + [anon_sym_repeat] = ACTIONS(2459), + [anon_sym_when] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_unless] = ACTIONS(2459), + [anon_sym_always] = ACTIONS(2459), + [anon_sym_thereis] = ACTIONS(2459), + [anon_sym_never] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_initially] = ACTIONS(2459), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2666), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [133] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2158), + [sym_num_lit] = STATE(2158), + [sym_kwd_lit] = STATE(2158), + [sym_str_lit] = STATE(2158), + [sym_char_lit] = STATE(2158), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2158), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2158), + [sym_set_lit] = STATE(2158), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2158), + [sym_splicing_read_cond_lit] = STATE(2158), + [sym_var_quoting_lit] = STATE(2158), + [sym_quoting_lit] = STATE(2158), + [sym_syn_quoting_lit] = STATE(2158), + [sym_unquote_splicing_lit] = STATE(2158), + [sym_unquoting_lit] = STATE(2158), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2158), + [sym_package_lit] = STATE(2158), + [sym_include_reader_macro] = STATE(2158), + [sym_complex_num_lit] = STATE(2158), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2434), + [sym_comment] = ACTIONS(2434), + [anon_sym_POUND_] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2668), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2668), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2445), + [anon_sym_POUND_CARET] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2668), + [anon_sym_cl] = ACTIONS(2456), + [aux_sym_accumulation_verb_token1] = ACTIONS(2459), + [anon_sym_for] = ACTIONS(2459), + [anon_sym_and] = ACTIONS(2459), + [anon_sym_as] = ACTIONS(2459), + [anon_sym_with] = ACTIONS(2459), + [anon_sym_do] = ACTIONS(2459), + [anon_sym_while] = ACTIONS(2459), + [anon_sym_until] = ACTIONS(2459), + [anon_sym_repeat] = ACTIONS(2459), + [anon_sym_when] = ACTIONS(2459), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_unless] = ACTIONS(2459), + [anon_sym_always] = ACTIONS(2459), + [anon_sym_thereis] = ACTIONS(2459), + [anon_sym_never] = ACTIONS(2459), + [anon_sym_else] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2459), + [anon_sym_return] = ACTIONS(2459), + [anon_sym_initially] = ACTIONS(2459), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2670), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [134] = { + [sym__gap] = STATE(46), + [sym_dis_expr] = STATE(46), + [sym__form] = STATE(2175), + [sym_num_lit] = STATE(2175), + [sym_kwd_lit] = STATE(2175), + [sym_str_lit] = STATE(2175), + [sym_char_lit] = STATE(2175), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2175), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2175), + [sym_set_lit] = STATE(2175), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2175), + [sym_splicing_read_cond_lit] = STATE(2175), + [sym_var_quoting_lit] = STATE(2175), + [sym_quoting_lit] = STATE(2175), + [sym_syn_quoting_lit] = STATE(2175), + [sym_unquote_splicing_lit] = STATE(2175), + [sym_unquoting_lit] = STATE(2175), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2175), + [sym_package_lit] = STATE(2175), + [sym_include_reader_macro] = STATE(2175), + [sym_complex_num_lit] = STATE(2175), + [aux_sym_dis_expr_repeat1] = STATE(46), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2672), + [sym_comment] = ACTIONS(2672), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2678), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2678), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2678), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2699), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [135] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2298), + [sym_num_lit] = STATE(2298), + [sym_kwd_lit] = STATE(2298), + [sym_str_lit] = STATE(2298), + [sym_char_lit] = STATE(2298), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2298), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2298), + [sym_set_lit] = STATE(2298), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2298), + [sym_splicing_read_cond_lit] = STATE(2298), + [sym_var_quoting_lit] = STATE(2298), + [sym_quoting_lit] = STATE(2298), + [sym_syn_quoting_lit] = STATE(2298), + [sym_unquote_splicing_lit] = STATE(2298), + [sym_unquoting_lit] = STATE(2298), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2298), + [sym_package_lit] = STATE(2298), + [sym_include_reader_macro] = STATE(2298), + [sym_complex_num_lit] = STATE(2298), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2701), + [sym_comment] = ACTIONS(2701), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2704), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2704), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2704), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2706), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [136] = { + [sym__gap] = STATE(222), + [sym_dis_expr] = STATE(222), + [sym__form] = STATE(2296), + [sym_num_lit] = STATE(2296), + [sym_kwd_lit] = STATE(2296), + [sym_str_lit] = STATE(2296), + [sym_char_lit] = STATE(2296), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2296), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2296), + [sym_set_lit] = STATE(2296), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2296), + [sym_splicing_read_cond_lit] = STATE(2296), + [sym_var_quoting_lit] = STATE(2296), + [sym_quoting_lit] = STATE(2296), + [sym_syn_quoting_lit] = STATE(2296), + [sym_unquote_splicing_lit] = STATE(2296), + [sym_unquoting_lit] = STATE(2296), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2296), + [sym_package_lit] = STATE(2296), + [sym_include_reader_macro] = STATE(2296), + [sym_complex_num_lit] = STATE(2296), + [aux_sym_dis_expr_repeat1] = STATE(222), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2708), + [sym_comment] = ACTIONS(2708), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2711), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2711), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2711), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2713), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [137] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2250), + [sym_num_lit] = STATE(2250), + [sym_kwd_lit] = STATE(2250), + [sym_str_lit] = STATE(2250), + [sym_char_lit] = STATE(2250), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2250), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2250), + [sym_set_lit] = STATE(2250), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2250), + [sym_splicing_read_cond_lit] = STATE(2250), + [sym_var_quoting_lit] = STATE(2250), + [sym_quoting_lit] = STATE(2250), + [sym_syn_quoting_lit] = STATE(2250), + [sym_unquote_splicing_lit] = STATE(2250), + [sym_unquoting_lit] = STATE(2250), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2250), + [sym_package_lit] = STATE(2250), + [sym_include_reader_macro] = STATE(2250), + [sym_complex_num_lit] = STATE(2250), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2715), + [sym_comment] = ACTIONS(2715), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2718), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2718), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2718), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2720), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [138] = { + [sym__gap] = STATE(916), + [sym_dis_expr] = STATE(916), + [sym__form] = STATE(229), + [sym_num_lit] = STATE(229), + [sym_kwd_lit] = STATE(229), + [sym_str_lit] = STATE(229), + [sym_char_lit] = STATE(229), + [sym_sym_lit] = STATE(1484), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(229), + [sym__bare_list_lit] = STATE(1483), + [sym_vec_lit] = STATE(229), + [sym_set_lit] = STATE(229), + [sym__bare_set_lit] = STATE(1482), + [sym_read_cond_lit] = STATE(229), + [sym_splicing_read_cond_lit] = STATE(229), + [sym_var_quoting_lit] = STATE(229), + [sym_quoting_lit] = STATE(229), + [sym_syn_quoting_lit] = STATE(229), + [sym_unquote_splicing_lit] = STATE(229), + [sym_unquoting_lit] = STATE(229), + [sym_defun] = STATE(1483), + [sym_loop_macro] = STATE(1483), + [sym_path_lit] = STATE(229), + [sym_package_lit] = STATE(229), + [sym_include_reader_macro] = STATE(229), + [sym_complex_num_lit] = STATE(229), + [aux_sym_dis_expr_repeat1] = STATE(916), + [aux_sym_list_lit_repeat1] = STATE(2813), + [sym__ws] = ACTIONS(2722), + [sym_comment] = ACTIONS(2722), + [anon_sym_POUND_] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2730), + [aux_sym_num_lit_token1] = ACTIONS(2732), + [anon_sym_COLON] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_nil_lit] = ACTIONS(2730), + [aux_sym_sym_lit_token1] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_POUND_CARET] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_RPAREN] = ACTIONS(2752), + [anon_sym_POUND0A] = ACTIONS(2754), + [anon_sym_POUND0a] = ACTIONS(2754), + [anon_sym_POUND_QMARK] = ACTIONS(2756), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), + [anon_sym_POUND_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_BQUOTE] = ACTIONS(2764), + [anon_sym_COMMA_AT] = ACTIONS(2766), + [anon_sym_COMMA] = ACTIONS(2768), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2730), + [anon_sym_cl] = ACTIONS(2770), + [aux_sym_accumulation_verb_token1] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_and] = ACTIONS(2773), + [anon_sym_as] = ACTIONS(2773), + [anon_sym_with] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_until] = ACTIONS(2773), + [anon_sym_repeat] = ACTIONS(2773), + [anon_sym_when] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_unless] = ACTIONS(2773), + [anon_sym_always] = ACTIONS(2773), + [anon_sym_thereis] = ACTIONS(2773), + [anon_sym_never] = ACTIONS(2773), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_finally] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_initially] = ACTIONS(2773), + [anon_sym_POUNDP] = ACTIONS(2775), + [anon_sym_POUNDp] = ACTIONS(2775), + [sym_self_referential_reader_macro] = ACTIONS(2777), + [anon_sym_POUND_PLUS] = ACTIONS(2779), + [anon_sym_POUND_DASH] = ACTIONS(2779), + [anon_sym_POUNDC] = ACTIONS(2781), + [anon_sym_POUNDc] = ACTIONS(2781), + }, + [139] = { + [sym__gap] = STATE(57), + [sym_dis_expr] = STATE(57), + [sym__form] = STATE(2286), + [sym_num_lit] = STATE(2286), + [sym_kwd_lit] = STATE(2286), + [sym_str_lit] = STATE(2286), + [sym_char_lit] = STATE(2286), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2286), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2286), + [sym_set_lit] = STATE(2286), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2286), + [sym_package_lit] = STATE(2286), + [sym_include_reader_macro] = STATE(2286), + [sym_complex_num_lit] = STATE(2286), + [aux_sym_dis_expr_repeat1] = STATE(57), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2783), + [sym_comment] = ACTIONS(2783), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2786), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2786), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2786), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2788), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [140] = { + [sym__gap] = STATE(119), + [sym_dis_expr] = STATE(119), + [sym__form] = STATE(2124), + [sym_num_lit] = STATE(2124), + [sym_kwd_lit] = STATE(2124), + [sym_str_lit] = STATE(2124), + [sym_char_lit] = STATE(2124), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2124), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2124), + [sym_set_lit] = STATE(2124), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2124), + [sym_splicing_read_cond_lit] = STATE(2124), + [sym_var_quoting_lit] = STATE(2124), + [sym_quoting_lit] = STATE(2124), + [sym_syn_quoting_lit] = STATE(2124), + [sym_unquote_splicing_lit] = STATE(2124), + [sym_unquoting_lit] = STATE(2124), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2124), + [sym_package_lit] = STATE(2124), + [sym_include_reader_macro] = STATE(2124), + [sym_complex_num_lit] = STATE(2124), + [aux_sym_dis_expr_repeat1] = STATE(119), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2790), + [sym_comment] = ACTIONS(2790), + [anon_sym_POUND_] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2796), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2796), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_POUND_CARET] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2796), + [anon_sym_cl] = ACTIONS(2812), + [aux_sym_accumulation_verb_token1] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_until] = ACTIONS(2815), + [anon_sym_repeat] = ACTIONS(2815), + [anon_sym_when] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_unless] = ACTIONS(2815), + [anon_sym_always] = ACTIONS(2815), + [anon_sym_thereis] = ACTIONS(2815), + [anon_sym_never] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_finally] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_initially] = ACTIONS(2815), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2817), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [141] = { + [sym__gap] = STATE(58), + [sym_dis_expr] = STATE(58), + [sym__form] = STATE(2270), + [sym_num_lit] = STATE(2270), + [sym_kwd_lit] = STATE(2270), + [sym_str_lit] = STATE(2270), + [sym_char_lit] = STATE(2270), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2270), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2270), + [sym_set_lit] = STATE(2270), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2270), + [sym_splicing_read_cond_lit] = STATE(2270), + [sym_var_quoting_lit] = STATE(2270), + [sym_quoting_lit] = STATE(2270), + [sym_syn_quoting_lit] = STATE(2270), + [sym_unquote_splicing_lit] = STATE(2270), + [sym_unquoting_lit] = STATE(2270), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2270), + [sym_package_lit] = STATE(2270), + [sym_include_reader_macro] = STATE(2270), + [sym_complex_num_lit] = STATE(2270), + [aux_sym_dis_expr_repeat1] = STATE(58), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2819), + [sym_comment] = ACTIONS(2819), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2825), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2825), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2825), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2846), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [142] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2275), + [sym_num_lit] = STATE(2275), + [sym_kwd_lit] = STATE(2275), + [sym_str_lit] = STATE(2275), + [sym_char_lit] = STATE(2275), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2275), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2275), + [sym_set_lit] = STATE(2275), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2275), + [sym_splicing_read_cond_lit] = STATE(2275), + [sym_var_quoting_lit] = STATE(2275), + [sym_quoting_lit] = STATE(2275), + [sym_syn_quoting_lit] = STATE(2275), + [sym_unquote_splicing_lit] = STATE(2275), + [sym_unquoting_lit] = STATE(2275), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2275), + [sym_package_lit] = STATE(2275), + [sym_include_reader_macro] = STATE(2275), + [sym_complex_num_lit] = STATE(2275), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2848), + [sym_comment] = ACTIONS(2848), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2851), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2851), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2851), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2853), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [143] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2281), + [sym_num_lit] = STATE(2281), + [sym_kwd_lit] = STATE(2281), + [sym_str_lit] = STATE(2281), + [sym_char_lit] = STATE(2281), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2281), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2281), + [sym_set_lit] = STATE(2281), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2281), + [sym_splicing_read_cond_lit] = STATE(2281), + [sym_var_quoting_lit] = STATE(2281), + [sym_quoting_lit] = STATE(2281), + [sym_syn_quoting_lit] = STATE(2281), + [sym_unquote_splicing_lit] = STATE(2281), + [sym_unquoting_lit] = STATE(2281), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2281), + [sym_package_lit] = STATE(2281), + [sym_include_reader_macro] = STATE(2281), + [sym_complex_num_lit] = STATE(2281), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2855), + [sym_comment] = ACTIONS(2855), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2861), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2861), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2861), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2882), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [144] = { + [sym__gap] = STATE(257), + [sym_dis_expr] = STATE(257), + [sym__form] = STATE(2294), + [sym_num_lit] = STATE(2294), + [sym_kwd_lit] = STATE(2294), + [sym_str_lit] = STATE(2294), + [sym_char_lit] = STATE(2294), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2294), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2294), + [sym_set_lit] = STATE(2294), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2294), + [sym_splicing_read_cond_lit] = STATE(2294), + [sym_var_quoting_lit] = STATE(2294), + [sym_quoting_lit] = STATE(2294), + [sym_syn_quoting_lit] = STATE(2294), + [sym_unquote_splicing_lit] = STATE(2294), + [sym_unquoting_lit] = STATE(2294), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2294), + [sym_package_lit] = STATE(2294), + [sym_include_reader_macro] = STATE(2294), + [sym_complex_num_lit] = STATE(2294), + [aux_sym_dis_expr_repeat1] = STATE(257), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2884), + [sym_comment] = ACTIONS(2884), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2887), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2887), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2887), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2889), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [145] = { + [sym__gap] = STATE(62), + [sym_dis_expr] = STATE(62), + [sym__form] = STATE(2339), + [sym_num_lit] = STATE(2339), + [sym_kwd_lit] = STATE(2339), + [sym_str_lit] = STATE(2339), + [sym_char_lit] = STATE(2339), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2339), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2339), + [sym_set_lit] = STATE(2339), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2339), + [sym_splicing_read_cond_lit] = STATE(2339), + [sym_var_quoting_lit] = STATE(2339), + [sym_quoting_lit] = STATE(2339), + [sym_syn_quoting_lit] = STATE(2339), + [sym_unquote_splicing_lit] = STATE(2339), + [sym_unquoting_lit] = STATE(2339), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2339), + [sym_package_lit] = STATE(2339), + [sym_include_reader_macro] = STATE(2339), + [sym_complex_num_lit] = STATE(2339), + [aux_sym_dis_expr_repeat1] = STATE(62), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2891), + [sym_comment] = ACTIONS(2891), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2894), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2894), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2894), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2896), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [146] = { + [sym__gap] = STATE(64), + [sym_dis_expr] = STATE(64), + [sym__form] = STATE(2349), + [sym_num_lit] = STATE(2349), + [sym_kwd_lit] = STATE(2349), + [sym_str_lit] = STATE(2349), + [sym_char_lit] = STATE(2349), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2349), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2349), + [sym_set_lit] = STATE(2349), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2349), + [sym_splicing_read_cond_lit] = STATE(2349), + [sym_var_quoting_lit] = STATE(2349), + [sym_quoting_lit] = STATE(2349), + [sym_syn_quoting_lit] = STATE(2349), + [sym_unquote_splicing_lit] = STATE(2349), + [sym_unquoting_lit] = STATE(2349), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2349), + [sym_package_lit] = STATE(2349), + [sym_include_reader_macro] = STATE(2349), + [sym_complex_num_lit] = STATE(2349), + [aux_sym_dis_expr_repeat1] = STATE(64), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2898), + [sym_comment] = ACTIONS(2898), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2901), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2901), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2901), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2903), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [147] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2377), + [sym_num_lit] = STATE(2377), + [sym_kwd_lit] = STATE(2377), + [sym_str_lit] = STATE(2377), + [sym_char_lit] = STATE(2377), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2377), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2377), + [sym_set_lit] = STATE(2377), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2377), + [sym_splicing_read_cond_lit] = STATE(2377), + [sym_var_quoting_lit] = STATE(2377), + [sym_quoting_lit] = STATE(2377), + [sym_syn_quoting_lit] = STATE(2377), + [sym_unquote_splicing_lit] = STATE(2377), + [sym_unquoting_lit] = STATE(2377), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2377), + [sym_package_lit] = STATE(2377), + [sym_include_reader_macro] = STATE(2377), + [sym_complex_num_lit] = STATE(2377), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2855), + [sym_comment] = ACTIONS(2855), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2905), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2905), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2905), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2907), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [148] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2292), + [sym_num_lit] = STATE(2292), + [sym_kwd_lit] = STATE(2292), + [sym_str_lit] = STATE(2292), + [sym_char_lit] = STATE(2292), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2292), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2292), + [sym_set_lit] = STATE(2292), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2292), + [sym_splicing_read_cond_lit] = STATE(2292), + [sym_var_quoting_lit] = STATE(2292), + [sym_quoting_lit] = STATE(2292), + [sym_syn_quoting_lit] = STATE(2292), + [sym_unquote_splicing_lit] = STATE(2292), + [sym_unquoting_lit] = STATE(2292), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2292), + [sym_package_lit] = STATE(2292), + [sym_include_reader_macro] = STATE(2292), + [sym_complex_num_lit] = STATE(2292), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2618), + [sym_comment] = ACTIONS(2618), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2909), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2909), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2909), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2911), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [149] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2385), + [sym_num_lit] = STATE(2385), + [sym_kwd_lit] = STATE(2385), + [sym_str_lit] = STATE(2385), + [sym_char_lit] = STATE(2385), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2385), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2385), + [sym_set_lit] = STATE(2385), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2385), + [sym_splicing_read_cond_lit] = STATE(2385), + [sym_var_quoting_lit] = STATE(2385), + [sym_quoting_lit] = STATE(2385), + [sym_syn_quoting_lit] = STATE(2385), + [sym_unquote_splicing_lit] = STATE(2385), + [sym_unquoting_lit] = STATE(2385), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2385), + [sym_package_lit] = STATE(2385), + [sym_include_reader_macro] = STATE(2385), + [sym_complex_num_lit] = STATE(2385), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2848), + [sym_comment] = ACTIONS(2848), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2913), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2913), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2913), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2915), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [150] = { + [sym__gap] = STATE(65), + [sym_dis_expr] = STATE(65), + [sym__form] = STATE(2415), + [sym_num_lit] = STATE(2415), + [sym_kwd_lit] = STATE(2415), + [sym_str_lit] = STATE(2415), + [sym_char_lit] = STATE(2415), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2415), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2415), + [sym_set_lit] = STATE(2415), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2415), + [sym_splicing_read_cond_lit] = STATE(2415), + [sym_var_quoting_lit] = STATE(2415), + [sym_quoting_lit] = STATE(2415), + [sym_syn_quoting_lit] = STATE(2415), + [sym_unquote_splicing_lit] = STATE(2415), + [sym_unquoting_lit] = STATE(2415), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2415), + [sym_package_lit] = STATE(2415), + [sym_include_reader_macro] = STATE(2415), + [sym_complex_num_lit] = STATE(2415), + [aux_sym_dis_expr_repeat1] = STATE(65), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2917), + [sym_comment] = ACTIONS(2917), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2920), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2920), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2920), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2922), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [151] = { + [sym__gap] = STATE(263), + [sym_dis_expr] = STATE(263), + [sym__form] = STATE(2290), + [sym_num_lit] = STATE(2290), + [sym_kwd_lit] = STATE(2290), + [sym_str_lit] = STATE(2290), + [sym_char_lit] = STATE(2290), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2290), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2290), + [sym_set_lit] = STATE(2290), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2290), + [sym_splicing_read_cond_lit] = STATE(2290), + [sym_var_quoting_lit] = STATE(2290), + [sym_quoting_lit] = STATE(2290), + [sym_syn_quoting_lit] = STATE(2290), + [sym_unquote_splicing_lit] = STATE(2290), + [sym_unquoting_lit] = STATE(2290), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2290), + [sym_package_lit] = STATE(2290), + [sym_include_reader_macro] = STATE(2290), + [sym_complex_num_lit] = STATE(2290), + [aux_sym_dis_expr_repeat1] = STATE(263), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2924), + [sym_comment] = ACTIONS(2924), + [anon_sym_POUND_] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2930), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2930), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_POUND_CARET] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2930), + [anon_sym_cl] = ACTIONS(2946), + [aux_sym_accumulation_verb_token1] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_and] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_until] = ACTIONS(2949), + [anon_sym_repeat] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_unless] = ACTIONS(2949), + [anon_sym_always] = ACTIONS(2949), + [anon_sym_thereis] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_finally] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_initially] = ACTIONS(2949), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2951), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [152] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2110), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2110), + [sym_set_lit] = STATE(2110), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2953), + [sym_comment] = ACTIONS(2953), + [anon_sym_POUND_] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2956), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2956), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_POUND_CARET] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2956), + [anon_sym_cl] = ACTIONS(2286), + [aux_sym_accumulation_verb_token1] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_and] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_until] = ACTIONS(2289), + [anon_sym_repeat] = ACTIONS(2289), + [anon_sym_when] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_unless] = ACTIONS(2289), + [anon_sym_always] = ACTIONS(2289), + [anon_sym_thereis] = ACTIONS(2289), + [anon_sym_never] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_finally] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_initially] = ACTIONS(2289), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2958), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [153] = { + [sym__gap] = STATE(267), + [sym_dis_expr] = STATE(267), + [sym__form] = STATE(2284), + [sym_num_lit] = STATE(2284), + [sym_kwd_lit] = STATE(2284), + [sym_str_lit] = STATE(2284), + [sym_char_lit] = STATE(2284), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2284), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2284), + [sym_set_lit] = STATE(2284), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2284), + [sym_splicing_read_cond_lit] = STATE(2284), + [sym_var_quoting_lit] = STATE(2284), + [sym_quoting_lit] = STATE(2284), + [sym_syn_quoting_lit] = STATE(2284), + [sym_unquote_splicing_lit] = STATE(2284), + [sym_unquoting_lit] = STATE(2284), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2284), + [sym_package_lit] = STATE(2284), + [sym_include_reader_macro] = STATE(2284), + [sym_complex_num_lit] = STATE(2284), + [aux_sym_dis_expr_repeat1] = STATE(267), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2960), + [sym_comment] = ACTIONS(2960), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2966), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2966), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2966), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2987), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [154] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2282), + [sym_num_lit] = STATE(2282), + [sym_kwd_lit] = STATE(2282), + [sym_str_lit] = STATE(2282), + [sym_char_lit] = STATE(2282), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2282), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2282), + [sym_set_lit] = STATE(2282), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2282), + [sym_splicing_read_cond_lit] = STATE(2282), + [sym_var_quoting_lit] = STATE(2282), + [sym_quoting_lit] = STATE(2282), + [sym_syn_quoting_lit] = STATE(2282), + [sym_unquote_splicing_lit] = STATE(2282), + [sym_unquoting_lit] = STATE(2282), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2282), + [sym_package_lit] = STATE(2282), + [sym_include_reader_macro] = STATE(2282), + [sym_complex_num_lit] = STATE(2282), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2989), + [sym_comment] = ACTIONS(2989), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2992), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(2992), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(2992), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(2994), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [155] = { + [sym__gap] = STATE(266), + [sym_dis_expr] = STATE(266), + [sym__form] = STATE(2280), + [sym_num_lit] = STATE(2280), + [sym_kwd_lit] = STATE(2280), + [sym_str_lit] = STATE(2280), + [sym_char_lit] = STATE(2280), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2280), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2280), + [sym_set_lit] = STATE(2280), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2280), + [sym_splicing_read_cond_lit] = STATE(2280), + [sym_var_quoting_lit] = STATE(2280), + [sym_quoting_lit] = STATE(2280), + [sym_syn_quoting_lit] = STATE(2280), + [sym_unquote_splicing_lit] = STATE(2280), + [sym_unquoting_lit] = STATE(2280), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2280), + [sym_package_lit] = STATE(2280), + [sym_include_reader_macro] = STATE(2280), + [sym_complex_num_lit] = STATE(2280), + [aux_sym_dis_expr_repeat1] = STATE(266), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2996), + [sym_comment] = ACTIONS(2996), + [anon_sym_POUND_] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3002), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3002), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_POUND_CARET] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3002), + [anon_sym_cl] = ACTIONS(3018), + [aux_sym_accumulation_verb_token1] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_and] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_with] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_until] = ACTIONS(3021), + [anon_sym_repeat] = ACTIONS(3021), + [anon_sym_when] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_unless] = ACTIONS(3021), + [anon_sym_always] = ACTIONS(3021), + [anon_sym_thereis] = ACTIONS(3021), + [anon_sym_never] = ACTIONS(3021), + [anon_sym_else] = ACTIONS(3021), + [anon_sym_finally] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_initially] = ACTIONS(3021), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3023), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [156] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2066), + [sym_num_lit] = STATE(2066), + [sym_kwd_lit] = STATE(2066), + [sym_str_lit] = STATE(2066), + [sym_char_lit] = STATE(2066), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2066), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2066), + [sym_set_lit] = STATE(2066), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2066), + [sym_splicing_read_cond_lit] = STATE(2066), + [sym_var_quoting_lit] = STATE(2066), + [sym_quoting_lit] = STATE(2066), + [sym_syn_quoting_lit] = STATE(2066), + [sym_unquote_splicing_lit] = STATE(2066), + [sym_unquoting_lit] = STATE(2066), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2066), + [sym_package_lit] = STATE(2066), + [sym_include_reader_macro] = STATE(2066), + [sym_complex_num_lit] = STATE(2066), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2715), + [sym_comment] = ACTIONS(2715), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3025), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3025), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3025), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3027), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [157] = { + [sym__gap] = STATE(74), + [sym_dis_expr] = STATE(74), + [sym__form] = STATE(2436), + [sym_num_lit] = STATE(2436), + [sym_kwd_lit] = STATE(2436), + [sym_str_lit] = STATE(2436), + [sym_char_lit] = STATE(2436), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2436), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2436), + [sym_set_lit] = STATE(2436), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2436), + [sym_splicing_read_cond_lit] = STATE(2436), + [sym_var_quoting_lit] = STATE(2436), + [sym_quoting_lit] = STATE(2436), + [sym_syn_quoting_lit] = STATE(2436), + [sym_unquote_splicing_lit] = STATE(2436), + [sym_unquoting_lit] = STATE(2436), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2436), + [sym_package_lit] = STATE(2436), + [sym_include_reader_macro] = STATE(2436), + [sym_complex_num_lit] = STATE(2436), + [aux_sym_dis_expr_repeat1] = STATE(74), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3029), + [sym_comment] = ACTIONS(3029), + [anon_sym_POUND_] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3032), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3032), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_POUND_CARET] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3032), + [anon_sym_cl] = ACTIONS(2694), + [aux_sym_accumulation_verb_token1] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_and] = ACTIONS(2697), + [anon_sym_as] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_until] = ACTIONS(2697), + [anon_sym_repeat] = ACTIONS(2697), + [anon_sym_when] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_unless] = ACTIONS(2697), + [anon_sym_always] = ACTIONS(2697), + [anon_sym_thereis] = ACTIONS(2697), + [anon_sym_never] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_finally] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_initially] = ACTIONS(2697), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3034), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [158] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2323), + [sym_num_lit] = STATE(2323), + [sym_kwd_lit] = STATE(2323), + [sym_str_lit] = STATE(2323), + [sym_char_lit] = STATE(2323), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2323), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2323), + [sym_set_lit] = STATE(2323), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2323), + [sym_splicing_read_cond_lit] = STATE(2323), + [sym_var_quoting_lit] = STATE(2323), + [sym_quoting_lit] = STATE(2323), + [sym_syn_quoting_lit] = STATE(2323), + [sym_unquote_splicing_lit] = STATE(2323), + [sym_unquoting_lit] = STATE(2323), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2323), + [sym_package_lit] = STATE(2323), + [sym_include_reader_macro] = STATE(2323), + [sym_complex_num_lit] = STATE(2323), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3036), + [sym_comment] = ACTIONS(3036), + [anon_sym_POUND_] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3042), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3042), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_POUND_CARET] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3042), + [anon_sym_cl] = ACTIONS(3058), + [aux_sym_accumulation_verb_token1] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_and] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_until] = ACTIONS(3061), + [anon_sym_repeat] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_unless] = ACTIONS(3061), + [anon_sym_always] = ACTIONS(3061), + [anon_sym_thereis] = ACTIONS(3061), + [anon_sym_never] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_initially] = ACTIONS(3061), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3063), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [159] = { + [sym__gap] = STATE(259), + [sym_dis_expr] = STATE(259), + [sym__form] = STATE(2274), + [sym_num_lit] = STATE(2274), + [sym_kwd_lit] = STATE(2274), + [sym_str_lit] = STATE(2274), + [sym_char_lit] = STATE(2274), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2274), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2274), + [sym_set_lit] = STATE(2274), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2274), + [sym_splicing_read_cond_lit] = STATE(2274), + [sym_var_quoting_lit] = STATE(2274), + [sym_quoting_lit] = STATE(2274), + [sym_syn_quoting_lit] = STATE(2274), + [sym_unquote_splicing_lit] = STATE(2274), + [sym_unquoting_lit] = STATE(2274), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2274), + [sym_package_lit] = STATE(2274), + [sym_include_reader_macro] = STATE(2274), + [sym_complex_num_lit] = STATE(2274), + [aux_sym_dis_expr_repeat1] = STATE(259), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3065), + [sym_comment] = ACTIONS(3065), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3068), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3068), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3068), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3070), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [160] = { + [sym__gap] = STATE(43), + [sym_dis_expr] = STATE(43), + [sym__form] = STATE(2444), + [sym_num_lit] = STATE(2444), + [sym_kwd_lit] = STATE(2444), + [sym_str_lit] = STATE(2444), + [sym_char_lit] = STATE(2444), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2444), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2444), + [sym_set_lit] = STATE(2444), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2444), + [sym_splicing_read_cond_lit] = STATE(2444), + [sym_var_quoting_lit] = STATE(2444), + [sym_quoting_lit] = STATE(2444), + [sym_syn_quoting_lit] = STATE(2444), + [sym_unquote_splicing_lit] = STATE(2444), + [sym_unquoting_lit] = STATE(2444), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2444), + [sym_package_lit] = STATE(2444), + [sym_include_reader_macro] = STATE(2444), + [sym_complex_num_lit] = STATE(2444), + [aux_sym_dis_expr_repeat1] = STATE(43), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3072), + [sym_comment] = ACTIONS(3072), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3075), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3075), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3075), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3077), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [161] = { + [sym__gap] = STATE(253), + [sym_dis_expr] = STATE(253), + [sym__form] = STATE(2324), + [sym_num_lit] = STATE(2324), + [sym_kwd_lit] = STATE(2324), + [sym_str_lit] = STATE(2324), + [sym_char_lit] = STATE(2324), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2324), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2324), + [sym_set_lit] = STATE(2324), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2324), + [sym_splicing_read_cond_lit] = STATE(2324), + [sym_var_quoting_lit] = STATE(2324), + [sym_quoting_lit] = STATE(2324), + [sym_syn_quoting_lit] = STATE(2324), + [sym_unquote_splicing_lit] = STATE(2324), + [sym_unquoting_lit] = STATE(2324), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2324), + [sym_package_lit] = STATE(2324), + [sym_include_reader_macro] = STATE(2324), + [sym_complex_num_lit] = STATE(2324), + [aux_sym_dis_expr_repeat1] = STATE(253), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3079), + [sym_comment] = ACTIONS(3079), + [anon_sym_POUND_] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3082), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3082), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_POUND_CARET] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3082), + [anon_sym_cl] = ACTIONS(3058), + [aux_sym_accumulation_verb_token1] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_and] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_until] = ACTIONS(3061), + [anon_sym_repeat] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_unless] = ACTIONS(3061), + [anon_sym_always] = ACTIONS(3061), + [anon_sym_thereis] = ACTIONS(3061), + [anon_sym_never] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_initially] = ACTIONS(3061), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3084), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [162] = { + [sym__gap] = STATE(158), + [sym_dis_expr] = STATE(158), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2114), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2114), + [sym_set_lit] = STATE(2114), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(158), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3086), + [sym_comment] = ACTIONS(3086), + [anon_sym_POUND_] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3089), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3089), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2275), + [anon_sym_POUND_CARET] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3089), + [anon_sym_cl] = ACTIONS(2286), + [aux_sym_accumulation_verb_token1] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_and] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_until] = ACTIONS(2289), + [anon_sym_repeat] = ACTIONS(2289), + [anon_sym_when] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_unless] = ACTIONS(2289), + [anon_sym_always] = ACTIONS(2289), + [anon_sym_thereis] = ACTIONS(2289), + [anon_sym_never] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_finally] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_initially] = ACTIONS(2289), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3091), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [163] = { + [sym__gap] = STATE(236), + [sym_dis_expr] = STATE(236), + [sym__form] = STATE(2328), + [sym_num_lit] = STATE(2328), + [sym_kwd_lit] = STATE(2328), + [sym_str_lit] = STATE(2328), + [sym_char_lit] = STATE(2328), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2328), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2328), + [sym_set_lit] = STATE(2328), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2328), + [sym_splicing_read_cond_lit] = STATE(2328), + [sym_var_quoting_lit] = STATE(2328), + [sym_quoting_lit] = STATE(2328), + [sym_syn_quoting_lit] = STATE(2328), + [sym_unquote_splicing_lit] = STATE(2328), + [sym_unquoting_lit] = STATE(2328), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2328), + [sym_package_lit] = STATE(2328), + [sym_include_reader_macro] = STATE(2328), + [sym_complex_num_lit] = STATE(2328), + [aux_sym_dis_expr_repeat1] = STATE(236), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3093), + [sym_comment] = ACTIONS(3093), + [anon_sym_POUND_] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3096), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3096), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_POUND_CARET] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3096), + [anon_sym_cl] = ACTIONS(3058), + [aux_sym_accumulation_verb_token1] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_and] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_until] = ACTIONS(3061), + [anon_sym_repeat] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_unless] = ACTIONS(3061), + [anon_sym_always] = ACTIONS(3061), + [anon_sym_thereis] = ACTIONS(3061), + [anon_sym_never] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_initially] = ACTIONS(3061), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3098), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [164] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2375), + [sym_num_lit] = STATE(2375), + [sym_kwd_lit] = STATE(2375), + [sym_str_lit] = STATE(2375), + [sym_char_lit] = STATE(2375), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2375), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2375), + [sym_set_lit] = STATE(2375), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2375), + [sym_splicing_read_cond_lit] = STATE(2375), + [sym_var_quoting_lit] = STATE(2375), + [sym_quoting_lit] = STATE(2375), + [sym_syn_quoting_lit] = STATE(2375), + [sym_unquote_splicing_lit] = STATE(2375), + [sym_unquoting_lit] = STATE(2375), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2375), + [sym_package_lit] = STATE(2375), + [sym_include_reader_macro] = STATE(2375), + [sym_complex_num_lit] = STATE(2375), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3036), + [sym_comment] = ACTIONS(3036), + [anon_sym_POUND_] = ACTIONS(3039), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3100), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3100), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_POUND_CARET] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(3056), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3100), + [anon_sym_cl] = ACTIONS(3058), + [aux_sym_accumulation_verb_token1] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_and] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_with] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_until] = ACTIONS(3061), + [anon_sym_repeat] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_unless] = ACTIONS(3061), + [anon_sym_always] = ACTIONS(3061), + [anon_sym_thereis] = ACTIONS(3061), + [anon_sym_never] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_finally] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_initially] = ACTIONS(3061), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3102), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [165] = { + [sym__gap] = STATE(128), + [sym_dis_expr] = STATE(128), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2117), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2117), + [sym_set_lit] = STATE(2117), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(128), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3104), + [sym_comment] = ACTIONS(3104), + [anon_sym_POUND_] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3107), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3107), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym_POUND_CARET] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3107), + [anon_sym_cl] = ACTIONS(1429), + [aux_sym_accumulation_verb_token1] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_and] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_until] = ACTIONS(1432), + [anon_sym_repeat] = ACTIONS(1432), + [anon_sym_when] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_unless] = ACTIONS(1432), + [anon_sym_always] = ACTIONS(1432), + [anon_sym_thereis] = ACTIONS(1432), + [anon_sym_never] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_finally] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_initially] = ACTIONS(1432), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3109), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [166] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2446), + [sym_num_lit] = STATE(2446), + [sym_kwd_lit] = STATE(2446), + [sym_str_lit] = STATE(2446), + [sym_char_lit] = STATE(2446), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2446), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2446), + [sym_set_lit] = STATE(2446), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2446), + [sym_splicing_read_cond_lit] = STATE(2446), + [sym_var_quoting_lit] = STATE(2446), + [sym_quoting_lit] = STATE(2446), + [sym_syn_quoting_lit] = STATE(2446), + [sym_unquote_splicing_lit] = STATE(2446), + [sym_unquoting_lit] = STATE(2446), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2446), + [sym_package_lit] = STATE(2446), + [sym_include_reader_macro] = STATE(2446), + [sym_complex_num_lit] = STATE(2446), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2848), + [sym_comment] = ACTIONS(2848), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3111), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3111), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3111), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3113), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [167] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2450), + [sym_num_lit] = STATE(2450), + [sym_kwd_lit] = STATE(2450), + [sym_str_lit] = STATE(2450), + [sym_char_lit] = STATE(2450), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2450), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2450), + [sym_set_lit] = STATE(2450), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2450), + [sym_splicing_read_cond_lit] = STATE(2450), + [sym_var_quoting_lit] = STATE(2450), + [sym_quoting_lit] = STATE(2450), + [sym_syn_quoting_lit] = STATE(2450), + [sym_unquote_splicing_lit] = STATE(2450), + [sym_unquoting_lit] = STATE(2450), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2450), + [sym_package_lit] = STATE(2450), + [sym_include_reader_macro] = STATE(2450), + [sym_complex_num_lit] = STATE(2450), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2855), + [sym_comment] = ACTIONS(2855), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3115), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3115), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3115), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3117), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [168] = { + [sym__gap] = STATE(79), + [sym_dis_expr] = STATE(79), + [sym__form] = STATE(2457), + [sym_num_lit] = STATE(2457), + [sym_kwd_lit] = STATE(2457), + [sym_str_lit] = STATE(2457), + [sym_char_lit] = STATE(2457), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2457), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2457), + [sym_set_lit] = STATE(2457), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2457), + [sym_splicing_read_cond_lit] = STATE(2457), + [sym_var_quoting_lit] = STATE(2457), + [sym_quoting_lit] = STATE(2457), + [sym_syn_quoting_lit] = STATE(2457), + [sym_unquote_splicing_lit] = STATE(2457), + [sym_unquoting_lit] = STATE(2457), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2457), + [sym_package_lit] = STATE(2457), + [sym_include_reader_macro] = STATE(2457), + [sym_complex_num_lit] = STATE(2457), + [aux_sym_dis_expr_repeat1] = STATE(79), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3119), + [sym_comment] = ACTIONS(3119), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3122), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3122), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3122), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3124), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [169] = { + [sym__gap] = STATE(50), + [sym_dis_expr] = STATE(50), + [sym__form] = STATE(2429), + [sym_num_lit] = STATE(2429), + [sym_kwd_lit] = STATE(2429), + [sym_str_lit] = STATE(2429), + [sym_char_lit] = STATE(2429), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2429), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2429), + [sym_set_lit] = STATE(2429), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2429), + [sym_splicing_read_cond_lit] = STATE(2429), + [sym_var_quoting_lit] = STATE(2429), + [sym_quoting_lit] = STATE(2429), + [sym_syn_quoting_lit] = STATE(2429), + [sym_unquote_splicing_lit] = STATE(2429), + [sym_unquoting_lit] = STATE(2429), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2429), + [sym_package_lit] = STATE(2429), + [sym_include_reader_macro] = STATE(2429), + [sym_complex_num_lit] = STATE(2429), + [aux_sym_dis_expr_repeat1] = STATE(50), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3126), + [sym_comment] = ACTIONS(3126), + [anon_sym_POUND_] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3132), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3132), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym_POUND_CARET] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3132), + [anon_sym_cl] = ACTIONS(3140), + [aux_sym_accumulation_verb_token1] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_and] = ACTIONS(891), + [anon_sym_as] = ACTIONS(891), + [anon_sym_with] = ACTIONS(891), + [anon_sym_do] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [anon_sym_until] = ACTIONS(891), + [anon_sym_repeat] = ACTIONS(891), + [anon_sym_when] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_unless] = ACTIONS(891), + [anon_sym_always] = ACTIONS(891), + [anon_sym_thereis] = ACTIONS(891), + [anon_sym_never] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_finally] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_initially] = ACTIONS(891), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3143), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [170] = { + [sym__gap] = STATE(250), + [sym_dis_expr] = STATE(250), + [sym__form] = STATE(2269), + [sym_num_lit] = STATE(2269), + [sym_kwd_lit] = STATE(2269), + [sym_str_lit] = STATE(2269), + [sym_char_lit] = STATE(2269), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2269), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2269), + [sym_set_lit] = STATE(2269), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2269), + [sym_splicing_read_cond_lit] = STATE(2269), + [sym_var_quoting_lit] = STATE(2269), + [sym_quoting_lit] = STATE(2269), + [sym_syn_quoting_lit] = STATE(2269), + [sym_unquote_splicing_lit] = STATE(2269), + [sym_unquoting_lit] = STATE(2269), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2269), + [sym_package_lit] = STATE(2269), + [sym_include_reader_macro] = STATE(2269), + [sym_complex_num_lit] = STATE(2269), + [aux_sym_dis_expr_repeat1] = STATE(250), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3145), + [sym_comment] = ACTIONS(3145), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3148), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3148), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3148), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3150), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [171] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2267), + [sym_num_lit] = STATE(2267), + [sym_kwd_lit] = STATE(2267), + [sym_str_lit] = STATE(2267), + [sym_char_lit] = STATE(2267), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2267), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2267), + [sym_set_lit] = STATE(2267), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2267), + [sym_splicing_read_cond_lit] = STATE(2267), + [sym_var_quoting_lit] = STATE(2267), + [sym_quoting_lit] = STATE(2267), + [sym_syn_quoting_lit] = STATE(2267), + [sym_unquote_splicing_lit] = STATE(2267), + [sym_unquoting_lit] = STATE(2267), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2267), + [sym_package_lit] = STATE(2267), + [sym_include_reader_macro] = STATE(2267), + [sym_complex_num_lit] = STATE(2267), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2989), + [sym_comment] = ACTIONS(2989), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3152), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3152), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3152), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3154), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [172] = { + [sym__gap] = STATE(81), + [sym_dis_expr] = STATE(81), + [sym__form] = STATE(2459), + [sym_num_lit] = STATE(2459), + [sym_kwd_lit] = STATE(2459), + [sym_str_lit] = STATE(2459), + [sym_char_lit] = STATE(2459), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2459), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2459), + [sym_set_lit] = STATE(2459), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2459), + [sym_splicing_read_cond_lit] = STATE(2459), + [sym_var_quoting_lit] = STATE(2459), + [sym_quoting_lit] = STATE(2459), + [sym_syn_quoting_lit] = STATE(2459), + [sym_unquote_splicing_lit] = STATE(2459), + [sym_unquoting_lit] = STATE(2459), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2459), + [sym_package_lit] = STATE(2459), + [sym_include_reader_macro] = STATE(2459), + [sym_complex_num_lit] = STATE(2459), + [aux_sym_dis_expr_repeat1] = STATE(81), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3156), + [sym_comment] = ACTIONS(3156), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3159), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3159), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3159), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3161), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [173] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2460), + [sym_num_lit] = STATE(2460), + [sym_kwd_lit] = STATE(2460), + [sym_str_lit] = STATE(2460), + [sym_char_lit] = STATE(2460), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2460), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2460), + [sym_set_lit] = STATE(2460), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2460), + [sym_splicing_read_cond_lit] = STATE(2460), + [sym_var_quoting_lit] = STATE(2460), + [sym_quoting_lit] = STATE(2460), + [sym_syn_quoting_lit] = STATE(2460), + [sym_unquote_splicing_lit] = STATE(2460), + [sym_unquoting_lit] = STATE(2460), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2460), + [sym_package_lit] = STATE(2460), + [sym_include_reader_macro] = STATE(2460), + [sym_complex_num_lit] = STATE(2460), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2855), + [sym_comment] = ACTIONS(2855), + [anon_sym_POUND_] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3163), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3163), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_POUND_CARET] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3163), + [anon_sym_cl] = ACTIONS(2877), + [aux_sym_accumulation_verb_token1] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_and] = ACTIONS(2880), + [anon_sym_as] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_until] = ACTIONS(2880), + [anon_sym_repeat] = ACTIONS(2880), + [anon_sym_when] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_unless] = ACTIONS(2880), + [anon_sym_always] = ACTIONS(2880), + [anon_sym_thereis] = ACTIONS(2880), + [anon_sym_never] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_finally] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_initially] = ACTIONS(2880), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3165), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [174] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2470), + [sym_num_lit] = STATE(2470), + [sym_kwd_lit] = STATE(2470), + [sym_str_lit] = STATE(2470), + [sym_char_lit] = STATE(2470), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2470), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2470), + [sym_set_lit] = STATE(2470), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2470), + [sym_splicing_read_cond_lit] = STATE(2470), + [sym_var_quoting_lit] = STATE(2470), + [sym_quoting_lit] = STATE(2470), + [sym_syn_quoting_lit] = STATE(2470), + [sym_unquote_splicing_lit] = STATE(2470), + [sym_unquoting_lit] = STATE(2470), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2470), + [sym_package_lit] = STATE(2470), + [sym_include_reader_macro] = STATE(2470), + [sym_complex_num_lit] = STATE(2470), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2848), + [sym_comment] = ACTIONS(2848), + [anon_sym_POUND_] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3167), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2827), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3167), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_POUND_CARET] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3167), + [anon_sym_cl] = ACTIONS(2841), + [aux_sym_accumulation_verb_token1] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_and] = ACTIONS(2844), + [anon_sym_as] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_until] = ACTIONS(2844), + [anon_sym_repeat] = ACTIONS(2844), + [anon_sym_when] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_unless] = ACTIONS(2844), + [anon_sym_always] = ACTIONS(2844), + [anon_sym_thereis] = ACTIONS(2844), + [anon_sym_never] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_finally] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_initially] = ACTIONS(2844), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3169), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [175] = { + [sym__gap] = STATE(243), + [sym_dis_expr] = STATE(243), + [sym__form] = STATE(2265), + [sym_num_lit] = STATE(2265), + [sym_kwd_lit] = STATE(2265), + [sym_str_lit] = STATE(2265), + [sym_char_lit] = STATE(2265), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2265), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2265), + [sym_set_lit] = STATE(2265), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2265), + [sym_splicing_read_cond_lit] = STATE(2265), + [sym_var_quoting_lit] = STATE(2265), + [sym_quoting_lit] = STATE(2265), + [sym_syn_quoting_lit] = STATE(2265), + [sym_unquote_splicing_lit] = STATE(2265), + [sym_unquoting_lit] = STATE(2265), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2265), + [sym_package_lit] = STATE(2265), + [sym_include_reader_macro] = STATE(2265), + [sym_complex_num_lit] = STATE(2265), + [aux_sym_dis_expr_repeat1] = STATE(243), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3171), + [sym_comment] = ACTIONS(3171), + [anon_sym_POUND_] = ACTIONS(2999), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3174), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3174), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_POUND_CARET] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3016), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3174), + [anon_sym_cl] = ACTIONS(3018), + [aux_sym_accumulation_verb_token1] = ACTIONS(3021), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_and] = ACTIONS(3021), + [anon_sym_as] = ACTIONS(3021), + [anon_sym_with] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_until] = ACTIONS(3021), + [anon_sym_repeat] = ACTIONS(3021), + [anon_sym_when] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_unless] = ACTIONS(3021), + [anon_sym_always] = ACTIONS(3021), + [anon_sym_thereis] = ACTIONS(3021), + [anon_sym_never] = ACTIONS(3021), + [anon_sym_else] = ACTIONS(3021), + [anon_sym_finally] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_initially] = ACTIONS(3021), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3176), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [176] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2476), + [sym_num_lit] = STATE(2476), + [sym_kwd_lit] = STATE(2476), + [sym_str_lit] = STATE(2476), + [sym_char_lit] = STATE(2476), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2476), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2476), + [sym_set_lit] = STATE(2476), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2476), + [sym_splicing_read_cond_lit] = STATE(2476), + [sym_var_quoting_lit] = STATE(2476), + [sym_quoting_lit] = STATE(2476), + [sym_syn_quoting_lit] = STATE(2476), + [sym_unquote_splicing_lit] = STATE(2476), + [sym_unquoting_lit] = STATE(2476), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2476), + [sym_package_lit] = STATE(2476), + [sym_include_reader_macro] = STATE(2476), + [sym_complex_num_lit] = STATE(2476), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2032), + [sym_comment] = ACTIONS(2032), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3178), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3178), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3178), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3180), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [177] = { + [sym__gap] = STATE(84), + [sym_dis_expr] = STATE(84), + [sym__form] = STATE(2478), + [sym_num_lit] = STATE(2478), + [sym_kwd_lit] = STATE(2478), + [sym_str_lit] = STATE(2478), + [sym_char_lit] = STATE(2478), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2478), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2478), + [sym_set_lit] = STATE(2478), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2478), + [sym_splicing_read_cond_lit] = STATE(2478), + [sym_var_quoting_lit] = STATE(2478), + [sym_quoting_lit] = STATE(2478), + [sym_syn_quoting_lit] = STATE(2478), + [sym_unquote_splicing_lit] = STATE(2478), + [sym_unquoting_lit] = STATE(2478), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2478), + [sym_package_lit] = STATE(2478), + [sym_include_reader_macro] = STATE(2478), + [sym_complex_num_lit] = STATE(2478), + [aux_sym_dis_expr_repeat1] = STATE(84), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3182), + [sym_comment] = ACTIONS(3182), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3185), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3185), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3185), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3187), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [178] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2118), + [sym_num_lit] = STATE(2118), + [sym_kwd_lit] = STATE(2118), + [sym_str_lit] = STATE(2118), + [sym_char_lit] = STATE(2118), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2118), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2118), + [sym_set_lit] = STATE(2118), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2118), + [sym_splicing_read_cond_lit] = STATE(2118), + [sym_var_quoting_lit] = STATE(2118), + [sym_quoting_lit] = STATE(2118), + [sym_syn_quoting_lit] = STATE(2118), + [sym_unquote_splicing_lit] = STATE(2118), + [sym_unquoting_lit] = STATE(2118), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2118), + [sym_package_lit] = STATE(2118), + [sym_include_reader_macro] = STATE(2118), + [sym_complex_num_lit] = STATE(2118), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1407), + [sym_comment] = ACTIONS(1407), + [anon_sym_POUND_] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3189), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3189), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym_POUND_CARET] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3189), + [anon_sym_cl] = ACTIONS(1429), + [aux_sym_accumulation_verb_token1] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_and] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_with] = ACTIONS(1432), + [anon_sym_do] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_until] = ACTIONS(1432), + [anon_sym_repeat] = ACTIONS(1432), + [anon_sym_when] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_unless] = ACTIONS(1432), + [anon_sym_always] = ACTIONS(1432), + [anon_sym_thereis] = ACTIONS(1432), + [anon_sym_never] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_finally] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_initially] = ACTIONS(1432), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3191), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [179] = { + [sym__gap] = STATE(270), + [sym_dis_expr] = STATE(270), + [sym__form] = STATE(2687), + [sym_num_lit] = STATE(2687), + [sym_kwd_lit] = STATE(2687), + [sym_str_lit] = STATE(2687), + [sym_char_lit] = STATE(2687), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2687), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2687), + [sym_set_lit] = STATE(2687), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2687), + [sym_splicing_read_cond_lit] = STATE(2687), + [sym_var_quoting_lit] = STATE(2687), + [sym_quoting_lit] = STATE(2687), + [sym_syn_quoting_lit] = STATE(2687), + [sym_unquote_splicing_lit] = STATE(2687), + [sym_unquoting_lit] = STATE(2687), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2687), + [sym_package_lit] = STATE(2687), + [sym_include_reader_macro] = STATE(2687), + [sym_complex_num_lit] = STATE(2687), + [aux_sym_dis_expr_repeat1] = STATE(270), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1279), + [sym__ws] = ACTIONS(3193), + [sym_comment] = ACTIONS(3193), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(3195), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(3195), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3195), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(3197), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [180] = { + [sym__gap] = STATE(239), + [sym_dis_expr] = STATE(239), + [sym__form] = STATE(2259), + [sym_num_lit] = STATE(2259), + [sym_kwd_lit] = STATE(2259), + [sym_str_lit] = STATE(2259), + [sym_char_lit] = STATE(2259), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2259), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2259), + [sym_set_lit] = STATE(2259), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2259), + [sym_splicing_read_cond_lit] = STATE(2259), + [sym_var_quoting_lit] = STATE(2259), + [sym_quoting_lit] = STATE(2259), + [sym_syn_quoting_lit] = STATE(2259), + [sym_unquote_splicing_lit] = STATE(2259), + [sym_unquoting_lit] = STATE(2259), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2259), + [sym_package_lit] = STATE(2259), + [sym_include_reader_macro] = STATE(2259), + [sym_complex_num_lit] = STATE(2259), + [aux_sym_dis_expr_repeat1] = STATE(239), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3199), + [sym_comment] = ACTIONS(3199), + [anon_sym_POUND_] = ACTIONS(2963), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3202), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2968), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3202), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_POUND_CARET] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3202), + [anon_sym_cl] = ACTIONS(2982), + [aux_sym_accumulation_verb_token1] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_and] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_with] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_until] = ACTIONS(2985), + [anon_sym_repeat] = ACTIONS(2985), + [anon_sym_when] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_unless] = ACTIONS(2985), + [anon_sym_always] = ACTIONS(2985), + [anon_sym_thereis] = ACTIONS(2985), + [anon_sym_never] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_finally] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_initially] = ACTIONS(2985), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3204), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [181] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2442), + [sym_num_lit] = STATE(2442), + [sym_kwd_lit] = STATE(2442), + [sym_str_lit] = STATE(2442), + [sym_char_lit] = STATE(2442), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2442), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2442), + [sym_set_lit] = STATE(2442), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2442), + [sym_splicing_read_cond_lit] = STATE(2442), + [sym_var_quoting_lit] = STATE(2442), + [sym_quoting_lit] = STATE(2442), + [sym_syn_quoting_lit] = STATE(2442), + [sym_unquote_splicing_lit] = STATE(2442), + [sym_unquoting_lit] = STATE(2442), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2442), + [sym_package_lit] = STATE(2442), + [sym_include_reader_macro] = STATE(2442), + [sym_complex_num_lit] = STATE(2442), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1709), + [sym_comment] = ACTIONS(1709), + [anon_sym_POUND_] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3206), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3206), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_POUND_CARET] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3206), + [anon_sym_cl] = ACTIONS(1731), + [aux_sym_accumulation_verb_token1] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_and] = ACTIONS(1734), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_with] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_until] = ACTIONS(1734), + [anon_sym_repeat] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_unless] = ACTIONS(1734), + [anon_sym_always] = ACTIONS(1734), + [anon_sym_thereis] = ACTIONS(1734), + [anon_sym_never] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_finally] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_initially] = ACTIONS(1734), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3208), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [182] = { + [sym__gap] = STATE(85), + [sym_dis_expr] = STATE(85), + [sym__form] = STATE(2482), + [sym_num_lit] = STATE(2482), + [sym_kwd_lit] = STATE(2482), + [sym_str_lit] = STATE(2482), + [sym_char_lit] = STATE(2482), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2482), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2482), + [sym_set_lit] = STATE(2482), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2482), + [sym_splicing_read_cond_lit] = STATE(2482), + [sym_var_quoting_lit] = STATE(2482), + [sym_quoting_lit] = STATE(2482), + [sym_syn_quoting_lit] = STATE(2482), + [sym_unquote_splicing_lit] = STATE(2482), + [sym_unquoting_lit] = STATE(2482), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2482), + [sym_package_lit] = STATE(2482), + [sym_include_reader_macro] = STATE(2482), + [sym_complex_num_lit] = STATE(2482), + [aux_sym_dis_expr_repeat1] = STATE(85), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3210), + [sym_comment] = ACTIONS(3210), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3213), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3213), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3213), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3215), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [183] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2425), + [sym_num_lit] = STATE(2425), + [sym_kwd_lit] = STATE(2425), + [sym_str_lit] = STATE(2425), + [sym_char_lit] = STATE(2425), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2425), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2425), + [sym_set_lit] = STATE(2425), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2425), + [sym_splicing_read_cond_lit] = STATE(2425), + [sym_var_quoting_lit] = STATE(2425), + [sym_quoting_lit] = STATE(2425), + [sym_syn_quoting_lit] = STATE(2425), + [sym_unquote_splicing_lit] = STATE(2425), + [sym_unquoting_lit] = STATE(2425), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2425), + [sym_package_lit] = STATE(2425), + [sym_include_reader_macro] = STATE(2425), + [sym_complex_num_lit] = STATE(2425), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2032), + [sym_comment] = ACTIONS(2032), + [anon_sym_POUND_] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3217), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3217), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_POUND_CARET] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3217), + [anon_sym_cl] = ACTIONS(2054), + [aux_sym_accumulation_verb_token1] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_and] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_until] = ACTIONS(2057), + [anon_sym_repeat] = ACTIONS(2057), + [anon_sym_when] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_unless] = ACTIONS(2057), + [anon_sym_always] = ACTIONS(2057), + [anon_sym_thereis] = ACTIONS(2057), + [anon_sym_never] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_finally] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_initially] = ACTIONS(2057), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3219), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [184] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2499), + [sym_num_lit] = STATE(2499), + [sym_kwd_lit] = STATE(2499), + [sym_str_lit] = STATE(2499), + [sym_char_lit] = STATE(2499), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2499), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2499), + [sym_set_lit] = STATE(2499), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2499), + [sym_splicing_read_cond_lit] = STATE(2499), + [sym_var_quoting_lit] = STATE(2499), + [sym_quoting_lit] = STATE(2499), + [sym_syn_quoting_lit] = STATE(2499), + [sym_unquote_splicing_lit] = STATE(2499), + [sym_unquoting_lit] = STATE(2499), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2499), + [sym_package_lit] = STATE(2499), + [sym_include_reader_macro] = STATE(2499), + [sym_complex_num_lit] = STATE(2499), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2116), + [sym_comment] = ACTIONS(2116), + [anon_sym_POUND_] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3221), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3221), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2127), + [anon_sym_POUND_CARET] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3221), + [anon_sym_cl] = ACTIONS(2138), + [aux_sym_accumulation_verb_token1] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_and] = ACTIONS(2141), + [anon_sym_as] = ACTIONS(2141), + [anon_sym_with] = ACTIONS(2141), + [anon_sym_do] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_until] = ACTIONS(2141), + [anon_sym_repeat] = ACTIONS(2141), + [anon_sym_when] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_unless] = ACTIONS(2141), + [anon_sym_always] = ACTIONS(2141), + [anon_sym_thereis] = ACTIONS(2141), + [anon_sym_never] = ACTIONS(2141), + [anon_sym_else] = ACTIONS(2141), + [anon_sym_finally] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_initially] = ACTIONS(2141), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3223), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [185] = { + [sym__gap] = STATE(86), + [sym_dis_expr] = STATE(86), + [sym__form] = STATE(2489), + [sym_num_lit] = STATE(2489), + [sym_kwd_lit] = STATE(2489), + [sym_str_lit] = STATE(2489), + [sym_char_lit] = STATE(2489), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2489), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2489), + [sym_set_lit] = STATE(2489), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2489), + [sym_splicing_read_cond_lit] = STATE(2489), + [sym_var_quoting_lit] = STATE(2489), + [sym_quoting_lit] = STATE(2489), + [sym_syn_quoting_lit] = STATE(2489), + [sym_unquote_splicing_lit] = STATE(2489), + [sym_unquoting_lit] = STATE(2489), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2489), + [sym_package_lit] = STATE(2489), + [sym_include_reader_macro] = STATE(2489), + [sym_complex_num_lit] = STATE(2489), + [aux_sym_dis_expr_repeat1] = STATE(86), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3225), + [sym_comment] = ACTIONS(3225), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3228), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3228), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3228), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3230), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [186] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2490), + [sym_num_lit] = STATE(2490), + [sym_kwd_lit] = STATE(2490), + [sym_str_lit] = STATE(2490), + [sym_char_lit] = STATE(2490), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2490), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2490), + [sym_set_lit] = STATE(2490), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2490), + [sym_splicing_read_cond_lit] = STATE(2490), + [sym_var_quoting_lit] = STATE(2490), + [sym_quoting_lit] = STATE(2490), + [sym_syn_quoting_lit] = STATE(2490), + [sym_unquote_splicing_lit] = STATE(2490), + [sym_unquoting_lit] = STATE(2490), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2490), + [sym_package_lit] = STATE(2490), + [sym_include_reader_macro] = STATE(2490), + [sym_complex_num_lit] = STATE(2490), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2174), + [sym_comment] = ACTIONS(2174), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3232), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3232), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3232), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3234), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [187] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2492), + [sym_num_lit] = STATE(2492), + [sym_kwd_lit] = STATE(2492), + [sym_str_lit] = STATE(2492), + [sym_char_lit] = STATE(2492), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2492), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2492), + [sym_set_lit] = STATE(2492), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2492), + [sym_splicing_read_cond_lit] = STATE(2492), + [sym_var_quoting_lit] = STATE(2492), + [sym_quoting_lit] = STATE(2492), + [sym_syn_quoting_lit] = STATE(2492), + [sym_unquote_splicing_lit] = STATE(2492), + [sym_unquoting_lit] = STATE(2492), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2492), + [sym_package_lit] = STATE(2492), + [sym_include_reader_macro] = STATE(2492), + [sym_complex_num_lit] = STATE(2492), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2174), + [sym_comment] = ACTIONS(2174), + [anon_sym_POUND_] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3236), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3236), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym_POUND_CARET] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3236), + [anon_sym_cl] = ACTIONS(2167), + [aux_sym_accumulation_verb_token1] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_and] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_with] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_until] = ACTIONS(2170), + [anon_sym_repeat] = ACTIONS(2170), + [anon_sym_when] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_unless] = ACTIONS(2170), + [anon_sym_always] = ACTIONS(2170), + [anon_sym_thereis] = ACTIONS(2170), + [anon_sym_never] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_finally] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_initially] = ACTIONS(2170), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3238), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [188] = { + [sym__gap] = STATE(87), + [sym_dis_expr] = STATE(87), + [sym__form] = STATE(2507), + [sym_num_lit] = STATE(2507), + [sym_kwd_lit] = STATE(2507), + [sym_str_lit] = STATE(2507), + [sym_char_lit] = STATE(2507), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2507), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2507), + [sym_set_lit] = STATE(2507), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2507), + [sym_splicing_read_cond_lit] = STATE(2507), + [sym_var_quoting_lit] = STATE(2507), + [sym_quoting_lit] = STATE(2507), + [sym_syn_quoting_lit] = STATE(2507), + [sym_unquote_splicing_lit] = STATE(2507), + [sym_unquoting_lit] = STATE(2507), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2507), + [sym_package_lit] = STATE(2507), + [sym_include_reader_macro] = STATE(2507), + [sym_complex_num_lit] = STATE(2507), + [aux_sym_dis_expr_repeat1] = STATE(87), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3240), + [sym_comment] = ACTIONS(3240), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3246), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3246), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3246), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3267), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [189] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2508), + [sym_num_lit] = STATE(2508), + [sym_kwd_lit] = STATE(2508), + [sym_str_lit] = STATE(2508), + [sym_char_lit] = STATE(2508), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2508), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2508), + [sym_set_lit] = STATE(2508), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2508), + [sym_splicing_read_cond_lit] = STATE(2508), + [sym_var_quoting_lit] = STATE(2508), + [sym_quoting_lit] = STATE(2508), + [sym_syn_quoting_lit] = STATE(2508), + [sym_unquote_splicing_lit] = STATE(2508), + [sym_unquoting_lit] = STATE(2508), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2508), + [sym_package_lit] = STATE(2508), + [sym_include_reader_macro] = STATE(2508), + [sym_complex_num_lit] = STATE(2508), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3269), + [sym_comment] = ACTIONS(3269), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3272), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3272), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3272), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3274), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [190] = { + [sym__gap] = STATE(95), + [sym_dis_expr] = STATE(95), + [sym__form] = STATE(2512), + [sym_num_lit] = STATE(2512), + [sym_kwd_lit] = STATE(2512), + [sym_str_lit] = STATE(2512), + [sym_char_lit] = STATE(2512), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2512), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2512), + [sym_set_lit] = STATE(2512), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2512), + [sym_splicing_read_cond_lit] = STATE(2512), + [sym_var_quoting_lit] = STATE(2512), + [sym_quoting_lit] = STATE(2512), + [sym_syn_quoting_lit] = STATE(2512), + [sym_unquote_splicing_lit] = STATE(2512), + [sym_unquoting_lit] = STATE(2512), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2512), + [sym_package_lit] = STATE(2512), + [sym_include_reader_macro] = STATE(2512), + [sym_complex_num_lit] = STATE(2512), + [aux_sym_dis_expr_repeat1] = STATE(95), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3276), + [sym_comment] = ACTIONS(3276), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3279), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3279), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3279), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3281), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [191] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2096), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2096), + [sym_set_lit] = STATE(2096), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2003), + [sym_comment] = ACTIONS(2003), + [anon_sym_POUND_] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3283), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3283), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_POUND_CARET] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3283), + [anon_sym_cl] = ACTIONS(2025), + [aux_sym_accumulation_verb_token1] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_and] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_with] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_until] = ACTIONS(2028), + [anon_sym_repeat] = ACTIONS(2028), + [anon_sym_when] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_unless] = ACTIONS(2028), + [anon_sym_always] = ACTIONS(2028), + [anon_sym_thereis] = ACTIONS(2028), + [anon_sym_never] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_finally] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_initially] = ACTIONS(2028), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3285), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [192] = { + [sym__gap] = STATE(232), + [sym_dis_expr] = STATE(232), + [sym__form] = STATE(2254), + [sym_num_lit] = STATE(2254), + [sym_kwd_lit] = STATE(2254), + [sym_str_lit] = STATE(2254), + [sym_char_lit] = STATE(2254), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2254), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2254), + [sym_set_lit] = STATE(2254), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2254), + [sym_splicing_read_cond_lit] = STATE(2254), + [sym_var_quoting_lit] = STATE(2254), + [sym_quoting_lit] = STATE(2254), + [sym_syn_quoting_lit] = STATE(2254), + [sym_unquote_splicing_lit] = STATE(2254), + [sym_unquoting_lit] = STATE(2254), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2254), + [sym_package_lit] = STATE(2254), + [sym_include_reader_macro] = STATE(2254), + [sym_complex_num_lit] = STATE(2254), + [aux_sym_dis_expr_repeat1] = STATE(232), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3287), + [sym_comment] = ACTIONS(3287), + [anon_sym_POUND_] = ACTIONS(3290), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3293), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3293), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1018), + [anon_sym_POUND_CARET] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3293), + [anon_sym_cl] = ACTIONS(3301), + [aux_sym_accumulation_verb_token1] = ACTIONS(1034), + [anon_sym_for] = ACTIONS(1034), + [anon_sym_and] = ACTIONS(1034), + [anon_sym_as] = ACTIONS(1034), + [anon_sym_with] = ACTIONS(1034), + [anon_sym_do] = ACTIONS(1034), + [anon_sym_while] = ACTIONS(1034), + [anon_sym_until] = ACTIONS(1034), + [anon_sym_repeat] = ACTIONS(1034), + [anon_sym_when] = ACTIONS(1034), + [anon_sym_if] = ACTIONS(1034), + [anon_sym_unless] = ACTIONS(1034), + [anon_sym_always] = ACTIONS(1034), + [anon_sym_thereis] = ACTIONS(1034), + [anon_sym_never] = ACTIONS(1034), + [anon_sym_else] = ACTIONS(1034), + [anon_sym_finally] = ACTIONS(1034), + [anon_sym_return] = ACTIONS(1034), + [anon_sym_initially] = ACTIONS(1034), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3304), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [193] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2451), + [sym_num_lit] = STATE(2451), + [sym_kwd_lit] = STATE(2451), + [sym_str_lit] = STATE(2451), + [sym_char_lit] = STATE(2451), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2451), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2451), + [sym_set_lit] = STATE(2451), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2451), + [sym_splicing_read_cond_lit] = STATE(2451), + [sym_var_quoting_lit] = STATE(2451), + [sym_quoting_lit] = STATE(2451), + [sym_syn_quoting_lit] = STATE(2451), + [sym_unquote_splicing_lit] = STATE(2451), + [sym_unquoting_lit] = STATE(2451), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2451), + [sym_package_lit] = STATE(2451), + [sym_include_reader_macro] = STATE(2451), + [sym_complex_num_lit] = STATE(2451), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3306), + [sym_comment] = ACTIONS(3306), + [anon_sym_POUND_] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3312), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3312), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_POUND_CARET] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3312), + [anon_sym_cl] = ACTIONS(3328), + [aux_sym_accumulation_verb_token1] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_and] = ACTIONS(3331), + [anon_sym_as] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_until] = ACTIONS(3331), + [anon_sym_repeat] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_unless] = ACTIONS(3331), + [anon_sym_always] = ACTIONS(3331), + [anon_sym_thereis] = ACTIONS(3331), + [anon_sym_never] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_finally] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_initially] = ACTIONS(3331), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3333), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [194] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2247), + [sym_num_lit] = STATE(2247), + [sym_kwd_lit] = STATE(2247), + [sym_str_lit] = STATE(2247), + [sym_char_lit] = STATE(2247), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2247), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2247), + [sym_set_lit] = STATE(2247), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2247), + [sym_splicing_read_cond_lit] = STATE(2247), + [sym_var_quoting_lit] = STATE(2247), + [sym_quoting_lit] = STATE(2247), + [sym_syn_quoting_lit] = STATE(2247), + [sym_unquote_splicing_lit] = STATE(2247), + [sym_unquoting_lit] = STATE(2247), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2247), + [sym_package_lit] = STATE(2247), + [sym_include_reader_macro] = STATE(2247), + [sym_complex_num_lit] = STATE(2247), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3335), + [sym_comment] = ACTIONS(3335), + [anon_sym_POUND_] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3341), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3343), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3341), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_POUND_CARET] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3341), + [anon_sym_cl] = ACTIONS(3357), + [aux_sym_accumulation_verb_token1] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_and] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_until] = ACTIONS(3360), + [anon_sym_repeat] = ACTIONS(3360), + [anon_sym_when] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_unless] = ACTIONS(3360), + [anon_sym_always] = ACTIONS(3360), + [anon_sym_thereis] = ACTIONS(3360), + [anon_sym_never] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_finally] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_initially] = ACTIONS(3360), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3362), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [195] = { + [sym__gap] = STATE(96), + [sym_dis_expr] = STATE(96), + [sym__form] = STATE(2518), + [sym_num_lit] = STATE(2518), + [sym_kwd_lit] = STATE(2518), + [sym_str_lit] = STATE(2518), + [sym_char_lit] = STATE(2518), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2518), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2518), + [sym_set_lit] = STATE(2518), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2518), + [sym_splicing_read_cond_lit] = STATE(2518), + [sym_var_quoting_lit] = STATE(2518), + [sym_quoting_lit] = STATE(2518), + [sym_syn_quoting_lit] = STATE(2518), + [sym_unquote_splicing_lit] = STATE(2518), + [sym_unquoting_lit] = STATE(2518), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2518), + [sym_package_lit] = STATE(2518), + [sym_include_reader_macro] = STATE(2518), + [sym_complex_num_lit] = STATE(2518), + [aux_sym_dis_expr_repeat1] = STATE(96), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3364), + [sym_comment] = ACTIONS(3364), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3370), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3370), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3370), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3391), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [196] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2519), + [sym_num_lit] = STATE(2519), + [sym_kwd_lit] = STATE(2519), + [sym_str_lit] = STATE(2519), + [sym_char_lit] = STATE(2519), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2519), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2519), + [sym_set_lit] = STATE(2519), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2519), + [sym_splicing_read_cond_lit] = STATE(2519), + [sym_var_quoting_lit] = STATE(2519), + [sym_quoting_lit] = STATE(2519), + [sym_syn_quoting_lit] = STATE(2519), + [sym_unquote_splicing_lit] = STATE(2519), + [sym_unquoting_lit] = STATE(2519), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2519), + [sym_package_lit] = STATE(2519), + [sym_include_reader_macro] = STATE(2519), + [sym_complex_num_lit] = STATE(2519), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3393), + [sym_comment] = ACTIONS(3393), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3396), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3396), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3396), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3398), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [197] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2525), + [sym_num_lit] = STATE(2525), + [sym_kwd_lit] = STATE(2525), + [sym_str_lit] = STATE(2525), + [sym_char_lit] = STATE(2525), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2525), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2525), + [sym_set_lit] = STATE(2525), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2525), + [sym_splicing_read_cond_lit] = STATE(2525), + [sym_var_quoting_lit] = STATE(2525), + [sym_quoting_lit] = STATE(2525), + [sym_syn_quoting_lit] = STATE(2525), + [sym_unquote_splicing_lit] = STATE(2525), + [sym_unquoting_lit] = STATE(2525), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2525), + [sym_package_lit] = STATE(2525), + [sym_include_reader_macro] = STATE(2525), + [sym_complex_num_lit] = STATE(2525), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3400), + [sym_comment] = ACTIONS(3400), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3406), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3406), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3406), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3427), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [198] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2245), + [sym_num_lit] = STATE(2245), + [sym_kwd_lit] = STATE(2245), + [sym_str_lit] = STATE(2245), + [sym_char_lit] = STATE(2245), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2245), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2245), + [sym_set_lit] = STATE(2245), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2245), + [sym_splicing_read_cond_lit] = STATE(2245), + [sym_var_quoting_lit] = STATE(2245), + [sym_quoting_lit] = STATE(2245), + [sym_syn_quoting_lit] = STATE(2245), + [sym_unquote_splicing_lit] = STATE(2245), + [sym_unquoting_lit] = STATE(2245), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2245), + [sym_package_lit] = STATE(2245), + [sym_include_reader_macro] = STATE(2245), + [sym_complex_num_lit] = STATE(2245), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3429), + [sym_comment] = ACTIONS(3429), + [anon_sym_POUND_] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3435), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3435), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_POUND_CARET] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_RPAREN] = ACTIONS(3449), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3435), + [anon_sym_cl] = ACTIONS(3451), + [aux_sym_accumulation_verb_token1] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_and] = ACTIONS(3454), + [anon_sym_as] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_until] = ACTIONS(3454), + [anon_sym_repeat] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_unless] = ACTIONS(3454), + [anon_sym_always] = ACTIONS(3454), + [anon_sym_thereis] = ACTIONS(3454), + [anon_sym_never] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_initially] = ACTIONS(3454), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3456), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [199] = { + [sym__gap] = STATE(75), + [sym_dis_expr] = STATE(75), + [sym__form] = STATE(2244), + [sym_num_lit] = STATE(2244), + [sym_kwd_lit] = STATE(2244), + [sym_str_lit] = STATE(2244), + [sym_char_lit] = STATE(2244), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2244), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2244), + [sym_set_lit] = STATE(2244), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2244), + [sym_splicing_read_cond_lit] = STATE(2244), + [sym_var_quoting_lit] = STATE(2244), + [sym_quoting_lit] = STATE(2244), + [sym_syn_quoting_lit] = STATE(2244), + [sym_unquote_splicing_lit] = STATE(2244), + [sym_unquoting_lit] = STATE(2244), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2244), + [sym_package_lit] = STATE(2244), + [sym_include_reader_macro] = STATE(2244), + [sym_complex_num_lit] = STATE(2244), + [aux_sym_dis_expr_repeat1] = STATE(75), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3458), + [sym_comment] = ACTIONS(3458), + [anon_sym_POUND_] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3461), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3461), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_POUND_CARET] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_RPAREN] = ACTIONS(3449), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3461), + [anon_sym_cl] = ACTIONS(3451), + [aux_sym_accumulation_verb_token1] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_and] = ACTIONS(3454), + [anon_sym_as] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_until] = ACTIONS(3454), + [anon_sym_repeat] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_unless] = ACTIONS(3454), + [anon_sym_always] = ACTIONS(3454), + [anon_sym_thereis] = ACTIONS(3454), + [anon_sym_never] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_initially] = ACTIONS(3454), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3463), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [200] = { + [sym__gap] = STATE(256), + [sym_dis_expr] = STATE(256), + [sym__form] = STATE(2242), + [sym_num_lit] = STATE(2242), + [sym_kwd_lit] = STATE(2242), + [sym_str_lit] = STATE(2242), + [sym_char_lit] = STATE(2242), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2242), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2242), + [sym_set_lit] = STATE(2242), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2242), + [sym_splicing_read_cond_lit] = STATE(2242), + [sym_var_quoting_lit] = STATE(2242), + [sym_quoting_lit] = STATE(2242), + [sym_syn_quoting_lit] = STATE(2242), + [sym_unquote_splicing_lit] = STATE(2242), + [sym_unquoting_lit] = STATE(2242), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2242), + [sym_package_lit] = STATE(2242), + [sym_include_reader_macro] = STATE(2242), + [sym_complex_num_lit] = STATE(2242), + [aux_sym_dis_expr_repeat1] = STATE(256), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3465), + [sym_comment] = ACTIONS(3465), + [anon_sym_POUND_] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3468), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3468), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_POUND_CARET] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_RPAREN] = ACTIONS(3449), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3468), + [anon_sym_cl] = ACTIONS(3451), + [aux_sym_accumulation_verb_token1] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_and] = ACTIONS(3454), + [anon_sym_as] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_until] = ACTIONS(3454), + [anon_sym_repeat] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_unless] = ACTIONS(3454), + [anon_sym_always] = ACTIONS(3454), + [anon_sym_thereis] = ACTIONS(3454), + [anon_sym_never] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_initially] = ACTIONS(3454), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3470), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [201] = { + [sym__gap] = STATE(98), + [sym_dis_expr] = STATE(98), + [sym__form] = STATE(2528), + [sym_num_lit] = STATE(2528), + [sym_kwd_lit] = STATE(2528), + [sym_str_lit] = STATE(2528), + [sym_char_lit] = STATE(2528), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2528), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2528), + [sym_set_lit] = STATE(2528), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2528), + [sym_splicing_read_cond_lit] = STATE(2528), + [sym_var_quoting_lit] = STATE(2528), + [sym_quoting_lit] = STATE(2528), + [sym_syn_quoting_lit] = STATE(2528), + [sym_unquote_splicing_lit] = STATE(2528), + [sym_unquoting_lit] = STATE(2528), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2528), + [sym_package_lit] = STATE(2528), + [sym_include_reader_macro] = STATE(2528), + [sym_complex_num_lit] = STATE(2528), + [aux_sym_dis_expr_repeat1] = STATE(98), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3472), + [sym_comment] = ACTIONS(3472), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3475), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3475), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3475), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3477), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [202] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2240), + [sym_num_lit] = STATE(2240), + [sym_kwd_lit] = STATE(2240), + [sym_str_lit] = STATE(2240), + [sym_char_lit] = STATE(2240), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2240), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2240), + [sym_set_lit] = STATE(2240), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2240), + [sym_splicing_read_cond_lit] = STATE(2240), + [sym_var_quoting_lit] = STATE(2240), + [sym_quoting_lit] = STATE(2240), + [sym_syn_quoting_lit] = STATE(2240), + [sym_unquote_splicing_lit] = STATE(2240), + [sym_unquoting_lit] = STATE(2240), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2240), + [sym_package_lit] = STATE(2240), + [sym_include_reader_macro] = STATE(2240), + [sym_complex_num_lit] = STATE(2240), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3429), + [sym_comment] = ACTIONS(3429), + [anon_sym_POUND_] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3479), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3479), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_POUND_CARET] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_RPAREN] = ACTIONS(3449), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3479), + [anon_sym_cl] = ACTIONS(3451), + [aux_sym_accumulation_verb_token1] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_and] = ACTIONS(3454), + [anon_sym_as] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_until] = ACTIONS(3454), + [anon_sym_repeat] = ACTIONS(3454), + [anon_sym_when] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_unless] = ACTIONS(3454), + [anon_sym_always] = ACTIONS(3454), + [anon_sym_thereis] = ACTIONS(3454), + [anon_sym_never] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_initially] = ACTIONS(3454), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3481), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [203] = { + [sym__gap] = STATE(99), + [sym_dis_expr] = STATE(99), + [sym__form] = STATE(2538), + [sym_num_lit] = STATE(2538), + [sym_kwd_lit] = STATE(2538), + [sym_str_lit] = STATE(2538), + [sym_char_lit] = STATE(2538), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2538), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2538), + [sym_set_lit] = STATE(2538), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2538), + [sym_splicing_read_cond_lit] = STATE(2538), + [sym_var_quoting_lit] = STATE(2538), + [sym_quoting_lit] = STATE(2538), + [sym_syn_quoting_lit] = STATE(2538), + [sym_unquote_splicing_lit] = STATE(2538), + [sym_unquoting_lit] = STATE(2538), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2538), + [sym_package_lit] = STATE(2538), + [sym_include_reader_macro] = STATE(2538), + [sym_complex_num_lit] = STATE(2538), + [aux_sym_dis_expr_repeat1] = STATE(99), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3483), + [sym_comment] = ACTIONS(3483), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3486), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3486), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3486), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3488), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [204] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2539), + [sym_num_lit] = STATE(2539), + [sym_kwd_lit] = STATE(2539), + [sym_str_lit] = STATE(2539), + [sym_char_lit] = STATE(2539), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2539), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2539), + [sym_set_lit] = STATE(2539), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2539), + [sym_splicing_read_cond_lit] = STATE(2539), + [sym_var_quoting_lit] = STATE(2539), + [sym_quoting_lit] = STATE(2539), + [sym_syn_quoting_lit] = STATE(2539), + [sym_unquote_splicing_lit] = STATE(2539), + [sym_unquoting_lit] = STATE(2539), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2539), + [sym_package_lit] = STATE(2539), + [sym_include_reader_macro] = STATE(2539), + [sym_complex_num_lit] = STATE(2539), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3400), + [sym_comment] = ACTIONS(3400), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3490), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3490), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3490), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3492), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [205] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2238), + [sym_num_lit] = STATE(2238), + [sym_kwd_lit] = STATE(2238), + [sym_str_lit] = STATE(2238), + [sym_char_lit] = STATE(2238), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2238), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2238), + [sym_set_lit] = STATE(2238), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2238), + [sym_splicing_read_cond_lit] = STATE(2238), + [sym_var_quoting_lit] = STATE(2238), + [sym_quoting_lit] = STATE(2238), + [sym_syn_quoting_lit] = STATE(2238), + [sym_unquote_splicing_lit] = STATE(2238), + [sym_unquoting_lit] = STATE(2238), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2238), + [sym_package_lit] = STATE(2238), + [sym_include_reader_macro] = STATE(2238), + [sym_complex_num_lit] = STATE(2238), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3335), + [sym_comment] = ACTIONS(3335), + [anon_sym_POUND_] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3494), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3343), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3494), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_POUND_CARET] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3494), + [anon_sym_cl] = ACTIONS(3357), + [aux_sym_accumulation_verb_token1] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_and] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_until] = ACTIONS(3360), + [anon_sym_repeat] = ACTIONS(3360), + [anon_sym_when] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_unless] = ACTIONS(3360), + [anon_sym_always] = ACTIONS(3360), + [anon_sym_thereis] = ACTIONS(3360), + [anon_sym_never] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_finally] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_initially] = ACTIONS(3360), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3496), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [206] = { + [sym__gap] = STATE(219), + [sym_dis_expr] = STATE(219), + [sym__form] = STATE(2237), + [sym_num_lit] = STATE(2237), + [sym_kwd_lit] = STATE(2237), + [sym_str_lit] = STATE(2237), + [sym_char_lit] = STATE(2237), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2237), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2237), + [sym_set_lit] = STATE(2237), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2237), + [sym_splicing_read_cond_lit] = STATE(2237), + [sym_var_quoting_lit] = STATE(2237), + [sym_quoting_lit] = STATE(2237), + [sym_syn_quoting_lit] = STATE(2237), + [sym_unquote_splicing_lit] = STATE(2237), + [sym_unquoting_lit] = STATE(2237), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2237), + [sym_package_lit] = STATE(2237), + [sym_include_reader_macro] = STATE(2237), + [sym_complex_num_lit] = STATE(2237), + [aux_sym_dis_expr_repeat1] = STATE(219), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3498), + [sym_comment] = ACTIONS(3498), + [anon_sym_POUND_] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3501), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3343), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3501), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_POUND_CARET] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3501), + [anon_sym_cl] = ACTIONS(3357), + [aux_sym_accumulation_verb_token1] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_and] = ACTIONS(3360), + [anon_sym_as] = ACTIONS(3360), + [anon_sym_with] = ACTIONS(3360), + [anon_sym_do] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_until] = ACTIONS(3360), + [anon_sym_repeat] = ACTIONS(3360), + [anon_sym_when] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_unless] = ACTIONS(3360), + [anon_sym_always] = ACTIONS(3360), + [anon_sym_thereis] = ACTIONS(3360), + [anon_sym_never] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3360), + [anon_sym_finally] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_initially] = ACTIONS(3360), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3503), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [207] = { + [sym__gap] = STATE(410), + [sym_dis_expr] = STATE(410), + [sym__form] = STATE(56), + [sym_num_lit] = STATE(56), + [sym_kwd_lit] = STATE(56), + [sym_str_lit] = STATE(56), + [sym_char_lit] = STATE(56), + [sym_sym_lit] = STATE(1484), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(56), + [sym__bare_list_lit] = STATE(1483), + [sym_vec_lit] = STATE(56), + [sym_set_lit] = STATE(56), + [sym__bare_set_lit] = STATE(1482), + [sym_read_cond_lit] = STATE(56), + [sym_splicing_read_cond_lit] = STATE(56), + [sym_var_quoting_lit] = STATE(56), + [sym_quoting_lit] = STATE(56), + [sym_syn_quoting_lit] = STATE(56), + [sym_unquote_splicing_lit] = STATE(56), + [sym_unquoting_lit] = STATE(56), + [sym_defun] = STATE(1483), + [sym_loop_macro] = STATE(1483), + [sym_path_lit] = STATE(56), + [sym_package_lit] = STATE(56), + [sym_include_reader_macro] = STATE(56), + [sym_complex_num_lit] = STATE(56), + [aux_sym_dis_expr_repeat1] = STATE(410), + [aux_sym_list_lit_repeat1] = STATE(2813), + [sym__ws] = ACTIONS(3505), + [sym_comment] = ACTIONS(3505), + [anon_sym_POUND_] = ACTIONS(3508), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3511), + [aux_sym_num_lit_token1] = ACTIONS(2732), + [anon_sym_COLON] = ACTIONS(3513), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_nil_lit] = ACTIONS(3511), + [aux_sym_sym_lit_token1] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(3516), + [anon_sym_POUND_CARET] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_POUND0A] = ACTIONS(2754), + [anon_sym_POUND0a] = ACTIONS(2754), + [anon_sym_POUND_QMARK] = ACTIONS(2756), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), + [anon_sym_POUND_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_BQUOTE] = ACTIONS(2764), + [anon_sym_COMMA_AT] = ACTIONS(2766), + [anon_sym_COMMA] = ACTIONS(2768), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3511), + [anon_sym_cl] = ACTIONS(3527), + [aux_sym_accumulation_verb_token1] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_and] = ACTIONS(3530), + [anon_sym_as] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_until] = ACTIONS(3530), + [anon_sym_repeat] = ACTIONS(3530), + [anon_sym_when] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_unless] = ACTIONS(3530), + [anon_sym_always] = ACTIONS(3530), + [anon_sym_thereis] = ACTIONS(3530), + [anon_sym_never] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_finally] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_initially] = ACTIONS(3530), + [anon_sym_POUNDP] = ACTIONS(2775), + [anon_sym_POUNDp] = ACTIONS(2775), + [sym_self_referential_reader_macro] = ACTIONS(3532), + [anon_sym_POUND_PLUS] = ACTIONS(2779), + [anon_sym_POUND_DASH] = ACTIONS(2779), + [anon_sym_POUNDC] = ACTIONS(2781), + [anon_sym_POUNDc] = ACTIONS(2781), + }, + [208] = { + [sym__gap] = STATE(217), + [sym_dis_expr] = STATE(217), + [sym__form] = STATE(2235), + [sym_num_lit] = STATE(2235), + [sym_kwd_lit] = STATE(2235), + [sym_str_lit] = STATE(2235), + [sym_char_lit] = STATE(2235), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2235), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2235), + [sym_set_lit] = STATE(2235), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2235), + [sym_splicing_read_cond_lit] = STATE(2235), + [sym_var_quoting_lit] = STATE(2235), + [sym_quoting_lit] = STATE(2235), + [sym_syn_quoting_lit] = STATE(2235), + [sym_unquote_splicing_lit] = STATE(2235), + [sym_unquoting_lit] = STATE(2235), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2235), + [sym_package_lit] = STATE(2235), + [sym_include_reader_macro] = STATE(2235), + [sym_complex_num_lit] = STATE(2235), + [aux_sym_dis_expr_repeat1] = STATE(217), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3534), + [sym_comment] = ACTIONS(3534), + [anon_sym_POUND_] = ACTIONS(3537), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3540), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3540), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3545), + [anon_sym_POUND_CARET] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3540), + [anon_sym_cl] = ACTIONS(3556), + [aux_sym_accumulation_verb_token1] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_and] = ACTIONS(3559), + [anon_sym_as] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3559), + [anon_sym_do] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_until] = ACTIONS(3559), + [anon_sym_repeat] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_unless] = ACTIONS(3559), + [anon_sym_always] = ACTIONS(3559), + [anon_sym_thereis] = ACTIONS(3559), + [anon_sym_never] = ACTIONS(3559), + [anon_sym_else] = ACTIONS(3559), + [anon_sym_finally] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_initially] = ACTIONS(3559), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3561), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [209] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2541), + [sym_num_lit] = STATE(2541), + [sym_kwd_lit] = STATE(2541), + [sym_str_lit] = STATE(2541), + [sym_char_lit] = STATE(2541), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2541), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2541), + [sym_set_lit] = STATE(2541), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2541), + [sym_splicing_read_cond_lit] = STATE(2541), + [sym_var_quoting_lit] = STATE(2541), + [sym_quoting_lit] = STATE(2541), + [sym_syn_quoting_lit] = STATE(2541), + [sym_unquote_splicing_lit] = STATE(2541), + [sym_unquoting_lit] = STATE(2541), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2541), + [sym_package_lit] = STATE(2541), + [sym_include_reader_macro] = STATE(2541), + [sym_complex_num_lit] = STATE(2541), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3393), + [sym_comment] = ACTIONS(3393), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3563), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3563), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3563), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3565), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [210] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2480), + [sym_num_lit] = STATE(2480), + [sym_kwd_lit] = STATE(2480), + [sym_str_lit] = STATE(2480), + [sym_char_lit] = STATE(2480), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2480), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2480), + [sym_set_lit] = STATE(2480), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2480), + [sym_splicing_read_cond_lit] = STATE(2480), + [sym_var_quoting_lit] = STATE(2480), + [sym_quoting_lit] = STATE(2480), + [sym_syn_quoting_lit] = STATE(2480), + [sym_unquote_splicing_lit] = STATE(2480), + [sym_unquoting_lit] = STATE(2480), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2480), + [sym_package_lit] = STATE(2480), + [sym_include_reader_macro] = STATE(2480), + [sym_complex_num_lit] = STATE(2480), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3567), + [sym_comment] = ACTIONS(3567), + [anon_sym_POUND_] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3573), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3575), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3573), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_POUND_CARET] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_RPAREN] = ACTIONS(3587), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3573), + [anon_sym_cl] = ACTIONS(3589), + [aux_sym_accumulation_verb_token1] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_and] = ACTIONS(3592), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_until] = ACTIONS(3592), + [anon_sym_repeat] = ACTIONS(3592), + [anon_sym_when] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_unless] = ACTIONS(3592), + [anon_sym_always] = ACTIONS(3592), + [anon_sym_thereis] = ACTIONS(3592), + [anon_sym_never] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_finally] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_initially] = ACTIONS(3592), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3594), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [211] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2233), + [sym_num_lit] = STATE(2233), + [sym_kwd_lit] = STATE(2233), + [sym_str_lit] = STATE(2233), + [sym_char_lit] = STATE(2233), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2233), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2233), + [sym_set_lit] = STATE(2233), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2233), + [sym_splicing_read_cond_lit] = STATE(2233), + [sym_var_quoting_lit] = STATE(2233), + [sym_quoting_lit] = STATE(2233), + [sym_syn_quoting_lit] = STATE(2233), + [sym_unquote_splicing_lit] = STATE(2233), + [sym_unquoting_lit] = STATE(2233), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2233), + [sym_package_lit] = STATE(2233), + [sym_include_reader_macro] = STATE(2233), + [sym_complex_num_lit] = STATE(2233), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3596), + [sym_comment] = ACTIONS(3596), + [anon_sym_POUND_] = ACTIONS(3537), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3599), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3599), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3545), + [anon_sym_POUND_CARET] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3599), + [anon_sym_cl] = ACTIONS(3556), + [aux_sym_accumulation_verb_token1] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_and] = ACTIONS(3559), + [anon_sym_as] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3559), + [anon_sym_do] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_until] = ACTIONS(3559), + [anon_sym_repeat] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_unless] = ACTIONS(3559), + [anon_sym_always] = ACTIONS(3559), + [anon_sym_thereis] = ACTIONS(3559), + [anon_sym_never] = ACTIONS(3559), + [anon_sym_else] = ACTIONS(3559), + [anon_sym_finally] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_initially] = ACTIONS(3559), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3601), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [212] = { + [sym__gap] = STATE(210), + [sym_dis_expr] = STATE(210), + [sym__form] = STATE(2231), + [sym_num_lit] = STATE(2231), + [sym_kwd_lit] = STATE(2231), + [sym_str_lit] = STATE(2231), + [sym_char_lit] = STATE(2231), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2231), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2231), + [sym_set_lit] = STATE(2231), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2231), + [sym_splicing_read_cond_lit] = STATE(2231), + [sym_var_quoting_lit] = STATE(2231), + [sym_quoting_lit] = STATE(2231), + [sym_syn_quoting_lit] = STATE(2231), + [sym_unquote_splicing_lit] = STATE(2231), + [sym_unquoting_lit] = STATE(2231), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2231), + [sym_package_lit] = STATE(2231), + [sym_include_reader_macro] = STATE(2231), + [sym_complex_num_lit] = STATE(2231), + [aux_sym_dis_expr_repeat1] = STATE(210), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3603), + [sym_comment] = ACTIONS(3603), + [anon_sym_POUND_] = ACTIONS(3537), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3606), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3606), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3545), + [anon_sym_POUND_CARET] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3606), + [anon_sym_cl] = ACTIONS(3556), + [aux_sym_accumulation_verb_token1] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_and] = ACTIONS(3559), + [anon_sym_as] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3559), + [anon_sym_do] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_until] = ACTIONS(3559), + [anon_sym_repeat] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_unless] = ACTIONS(3559), + [anon_sym_always] = ACTIONS(3559), + [anon_sym_thereis] = ACTIONS(3559), + [anon_sym_never] = ACTIONS(3559), + [anon_sym_else] = ACTIONS(3559), + [anon_sym_finally] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_initially] = ACTIONS(3559), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3608), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [213] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2228), + [sym_num_lit] = STATE(2228), + [sym_kwd_lit] = STATE(2228), + [sym_str_lit] = STATE(2228), + [sym_char_lit] = STATE(2228), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2228), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2228), + [sym_set_lit] = STATE(2228), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2228), + [sym_splicing_read_cond_lit] = STATE(2228), + [sym_var_quoting_lit] = STATE(2228), + [sym_quoting_lit] = STATE(2228), + [sym_syn_quoting_lit] = STATE(2228), + [sym_unquote_splicing_lit] = STATE(2228), + [sym_unquoting_lit] = STATE(2228), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2228), + [sym_package_lit] = STATE(2228), + [sym_include_reader_macro] = STATE(2228), + [sym_complex_num_lit] = STATE(2228), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2618), + [sym_comment] = ACTIONS(2618), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3610), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3610), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3610), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3612), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [214] = { + [sym__gap] = STATE(209), + [sym_dis_expr] = STATE(209), + [sym__form] = STATE(2227), + [sym_num_lit] = STATE(2227), + [sym_kwd_lit] = STATE(2227), + [sym_str_lit] = STATE(2227), + [sym_char_lit] = STATE(2227), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2227), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2227), + [sym_set_lit] = STATE(2227), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2227), + [sym_splicing_read_cond_lit] = STATE(2227), + [sym_var_quoting_lit] = STATE(2227), + [sym_quoting_lit] = STATE(2227), + [sym_syn_quoting_lit] = STATE(2227), + [sym_unquote_splicing_lit] = STATE(2227), + [sym_unquoting_lit] = STATE(2227), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2227), + [sym_package_lit] = STATE(2227), + [sym_include_reader_macro] = STATE(2227), + [sym_complex_num_lit] = STATE(2227), + [aux_sym_dis_expr_repeat1] = STATE(209), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3614), + [sym_comment] = ACTIONS(3614), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3617), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3617), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3617), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3619), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [215] = { + [sym__gap] = STATE(101), + [sym_dis_expr] = STATE(101), + [sym__form] = STATE(2474), + [sym_num_lit] = STATE(2474), + [sym_kwd_lit] = STATE(2474), + [sym_str_lit] = STATE(2474), + [sym_char_lit] = STATE(2474), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2474), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2474), + [sym_set_lit] = STATE(2474), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2474), + [sym_splicing_read_cond_lit] = STATE(2474), + [sym_var_quoting_lit] = STATE(2474), + [sym_quoting_lit] = STATE(2474), + [sym_syn_quoting_lit] = STATE(2474), + [sym_unquote_splicing_lit] = STATE(2474), + [sym_unquoting_lit] = STATE(2474), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2474), + [sym_package_lit] = STATE(2474), + [sym_include_reader_macro] = STATE(2474), + [sym_complex_num_lit] = STATE(2474), + [aux_sym_dis_expr_repeat1] = STATE(101), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3621), + [sym_comment] = ACTIONS(3621), + [anon_sym_POUND_] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3624), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3575), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3624), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_POUND_CARET] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_RPAREN] = ACTIONS(3587), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3624), + [anon_sym_cl] = ACTIONS(3589), + [aux_sym_accumulation_verb_token1] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_and] = ACTIONS(3592), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_until] = ACTIONS(3592), + [anon_sym_repeat] = ACTIONS(3592), + [anon_sym_when] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_unless] = ACTIONS(3592), + [anon_sym_always] = ACTIONS(3592), + [anon_sym_thereis] = ACTIONS(3592), + [anon_sym_never] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_finally] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_initially] = ACTIONS(3592), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3626), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [216] = { + [sym__gap] = STATE(106), + [sym_dis_expr] = STATE(106), + [sym__form] = STATE(2471), + [sym_num_lit] = STATE(2471), + [sym_kwd_lit] = STATE(2471), + [sym_str_lit] = STATE(2471), + [sym_char_lit] = STATE(2471), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2471), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2471), + [sym_set_lit] = STATE(2471), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2471), + [sym_splicing_read_cond_lit] = STATE(2471), + [sym_var_quoting_lit] = STATE(2471), + [sym_quoting_lit] = STATE(2471), + [sym_syn_quoting_lit] = STATE(2471), + [sym_unquote_splicing_lit] = STATE(2471), + [sym_unquoting_lit] = STATE(2471), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2471), + [sym_package_lit] = STATE(2471), + [sym_include_reader_macro] = STATE(2471), + [sym_complex_num_lit] = STATE(2471), + [aux_sym_dis_expr_repeat1] = STATE(106), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3628), + [sym_comment] = ACTIONS(3628), + [anon_sym_POUND_] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3631), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3575), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3631), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_POUND_CARET] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_RPAREN] = ACTIONS(3587), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3631), + [anon_sym_cl] = ACTIONS(3589), + [aux_sym_accumulation_verb_token1] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_and] = ACTIONS(3592), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_until] = ACTIONS(3592), + [anon_sym_repeat] = ACTIONS(3592), + [anon_sym_when] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_unless] = ACTIONS(3592), + [anon_sym_always] = ACTIONS(3592), + [anon_sym_thereis] = ACTIONS(3592), + [anon_sym_never] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_finally] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_initially] = ACTIONS(3592), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3633), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [217] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2464), + [sym_num_lit] = STATE(2464), + [sym_kwd_lit] = STATE(2464), + [sym_str_lit] = STATE(2464), + [sym_char_lit] = STATE(2464), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2464), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2464), + [sym_set_lit] = STATE(2464), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2464), + [sym_splicing_read_cond_lit] = STATE(2464), + [sym_var_quoting_lit] = STATE(2464), + [sym_quoting_lit] = STATE(2464), + [sym_syn_quoting_lit] = STATE(2464), + [sym_unquote_splicing_lit] = STATE(2464), + [sym_unquoting_lit] = STATE(2464), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2464), + [sym_package_lit] = STATE(2464), + [sym_include_reader_macro] = STATE(2464), + [sym_complex_num_lit] = STATE(2464), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3567), + [sym_comment] = ACTIONS(3567), + [anon_sym_POUND_] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3635), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3575), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3635), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3578), + [anon_sym_POUND_CARET] = ACTIONS(3581), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_RPAREN] = ACTIONS(3587), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3635), + [anon_sym_cl] = ACTIONS(3589), + [aux_sym_accumulation_verb_token1] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_and] = ACTIONS(3592), + [anon_sym_as] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_until] = ACTIONS(3592), + [anon_sym_repeat] = ACTIONS(3592), + [anon_sym_when] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_unless] = ACTIONS(3592), + [anon_sym_always] = ACTIONS(3592), + [anon_sym_thereis] = ACTIONS(3592), + [anon_sym_never] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_finally] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_initially] = ACTIONS(3592), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3637), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [218] = { + [sym__gap] = STATE(829), + [sym_dis_expr] = STATE(829), + [sym__form] = STATE(247), + [sym_num_lit] = STATE(247), + [sym_kwd_lit] = STATE(247), + [sym_str_lit] = STATE(247), + [sym_char_lit] = STATE(247), + [sym_sym_lit] = STATE(1484), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(247), + [sym__bare_list_lit] = STATE(1483), + [sym_vec_lit] = STATE(247), + [sym_set_lit] = STATE(247), + [sym__bare_set_lit] = STATE(1482), + [sym_read_cond_lit] = STATE(247), + [sym_splicing_read_cond_lit] = STATE(247), + [sym_var_quoting_lit] = STATE(247), + [sym_quoting_lit] = STATE(247), + [sym_syn_quoting_lit] = STATE(247), + [sym_unquote_splicing_lit] = STATE(247), + [sym_unquoting_lit] = STATE(247), + [sym_defun] = STATE(1483), + [sym_loop_macro] = STATE(1483), + [sym_path_lit] = STATE(247), + [sym_package_lit] = STATE(247), + [sym_include_reader_macro] = STATE(247), + [sym_complex_num_lit] = STATE(247), + [aux_sym_dis_expr_repeat1] = STATE(829), + [aux_sym_list_lit_repeat1] = STATE(2813), + [sym__ws] = ACTIONS(3639), + [sym_comment] = ACTIONS(3639), + [anon_sym_POUND_] = ACTIONS(3642), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(3645), + [aux_sym_num_lit_token1] = ACTIONS(2732), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_nil_lit] = ACTIONS(3645), + [aux_sym_sym_lit_token1] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(3650), + [anon_sym_POUND_CARET] = ACTIONS(3653), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_RPAREN] = ACTIONS(3659), + [anon_sym_POUND0A] = ACTIONS(2754), + [anon_sym_POUND0a] = ACTIONS(2754), + [anon_sym_POUND_QMARK] = ACTIONS(2756), + [anon_sym_POUND_QMARK_AT] = ACTIONS(2758), + [anon_sym_POUND_SQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_BQUOTE] = ACTIONS(2764), + [anon_sym_COMMA_AT] = ACTIONS(2766), + [anon_sym_COMMA] = ACTIONS(2768), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3645), + [anon_sym_cl] = ACTIONS(3661), + [aux_sym_accumulation_verb_token1] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_as] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_until] = ACTIONS(3664), + [anon_sym_repeat] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_unless] = ACTIONS(3664), + [anon_sym_always] = ACTIONS(3664), + [anon_sym_thereis] = ACTIONS(3664), + [anon_sym_never] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_finally] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_initially] = ACTIONS(3664), + [anon_sym_POUNDP] = ACTIONS(2775), + [anon_sym_POUNDp] = ACTIONS(2775), + [sym_self_referential_reader_macro] = ACTIONS(3666), + [anon_sym_POUND_PLUS] = ACTIONS(2779), + [anon_sym_POUND_DASH] = ACTIONS(2779), + [anon_sym_POUNDC] = ACTIONS(2781), + [anon_sym_POUNDc] = ACTIONS(2781), + }, + [219] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2437), + [sym_num_lit] = STATE(2437), + [sym_kwd_lit] = STATE(2437), + [sym_str_lit] = STATE(2437), + [sym_char_lit] = STATE(2437), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2437), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2437), + [sym_set_lit] = STATE(2437), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2437), + [sym_splicing_read_cond_lit] = STATE(2437), + [sym_var_quoting_lit] = STATE(2437), + [sym_quoting_lit] = STATE(2437), + [sym_syn_quoting_lit] = STATE(2437), + [sym_unquote_splicing_lit] = STATE(2437), + [sym_unquoting_lit] = STATE(2437), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2437), + [sym_package_lit] = STATE(2437), + [sym_include_reader_macro] = STATE(2437), + [sym_complex_num_lit] = STATE(2437), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3668), + [sym_comment] = ACTIONS(3668), + [anon_sym_POUND_] = ACTIONS(3671), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3674), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3676), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3674), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3679), + [anon_sym_POUND_CARET] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3685), + [anon_sym_RPAREN] = ACTIONS(3688), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3674), + [anon_sym_cl] = ACTIONS(3690), + [aux_sym_accumulation_verb_token1] = ACTIONS(3693), + [anon_sym_for] = ACTIONS(3693), + [anon_sym_and] = ACTIONS(3693), + [anon_sym_as] = ACTIONS(3693), + [anon_sym_with] = ACTIONS(3693), + [anon_sym_do] = ACTIONS(3693), + [anon_sym_while] = ACTIONS(3693), + [anon_sym_until] = ACTIONS(3693), + [anon_sym_repeat] = ACTIONS(3693), + [anon_sym_when] = ACTIONS(3693), + [anon_sym_if] = ACTIONS(3693), + [anon_sym_unless] = ACTIONS(3693), + [anon_sym_always] = ACTIONS(3693), + [anon_sym_thereis] = ACTIONS(3693), + [anon_sym_never] = ACTIONS(3693), + [anon_sym_else] = ACTIONS(3693), + [anon_sym_finally] = ACTIONS(3693), + [anon_sym_return] = ACTIONS(3693), + [anon_sym_initially] = ACTIONS(3693), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3695), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [220] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2120), + [sym_num_lit] = STATE(2120), + [sym_kwd_lit] = STATE(2120), + [sym_str_lit] = STATE(2120), + [sym_char_lit] = STATE(2120), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2120), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2120), + [sym_set_lit] = STATE(2120), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2120), + [sym_splicing_read_cond_lit] = STATE(2120), + [sym_var_quoting_lit] = STATE(2120), + [sym_quoting_lit] = STATE(2120), + [sym_syn_quoting_lit] = STATE(2120), + [sym_unquote_splicing_lit] = STATE(2120), + [sym_unquoting_lit] = STATE(2120), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2120), + [sym_package_lit] = STATE(2120), + [sym_include_reader_macro] = STATE(2120), + [sym_complex_num_lit] = STATE(2120), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3697), + [sym_comment] = ACTIONS(3697), + [anon_sym_POUND_] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3700), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3700), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_POUND_CARET] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3700), + [anon_sym_cl] = ACTIONS(2812), + [aux_sym_accumulation_verb_token1] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_until] = ACTIONS(2815), + [anon_sym_repeat] = ACTIONS(2815), + [anon_sym_when] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_unless] = ACTIONS(2815), + [anon_sym_always] = ACTIONS(2815), + [anon_sym_thereis] = ACTIONS(2815), + [anon_sym_never] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_finally] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_initially] = ACTIONS(2815), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3702), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [221] = { + [sym__gap] = STATE(107), + [sym_dis_expr] = STATE(107), + [sym__form] = STATE(2416), + [sym_num_lit] = STATE(2416), + [sym_kwd_lit] = STATE(2416), + [sym_str_lit] = STATE(2416), + [sym_char_lit] = STATE(2416), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2416), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2416), + [sym_set_lit] = STATE(2416), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2416), + [sym_splicing_read_cond_lit] = STATE(2416), + [sym_var_quoting_lit] = STATE(2416), + [sym_quoting_lit] = STATE(2416), + [sym_syn_quoting_lit] = STATE(2416), + [sym_unquote_splicing_lit] = STATE(2416), + [sym_unquoting_lit] = STATE(2416), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2416), + [sym_package_lit] = STATE(2416), + [sym_include_reader_macro] = STATE(2416), + [sym_complex_num_lit] = STATE(2416), + [aux_sym_dis_expr_repeat1] = STATE(107), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3704), + [sym_comment] = ACTIONS(3704), + [anon_sym_POUND_] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3707), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3707), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_POUND_CARET] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3707), + [anon_sym_cl] = ACTIONS(1916), + [aux_sym_accumulation_verb_token1] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_and] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_until] = ACTIONS(1919), + [anon_sym_repeat] = ACTIONS(1919), + [anon_sym_when] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_unless] = ACTIONS(1919), + [anon_sym_always] = ACTIONS(1919), + [anon_sym_thereis] = ACTIONS(1919), + [anon_sym_never] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_finally] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_initially] = ACTIONS(1919), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3709), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [222] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2183), + [sym_num_lit] = STATE(2183), + [sym_kwd_lit] = STATE(2183), + [sym_str_lit] = STATE(2183), + [sym_char_lit] = STATE(2183), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2183), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2183), + [sym_set_lit] = STATE(2183), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2183), + [sym_splicing_read_cond_lit] = STATE(2183), + [sym_var_quoting_lit] = STATE(2183), + [sym_quoting_lit] = STATE(2183), + [sym_syn_quoting_lit] = STATE(2183), + [sym_unquote_splicing_lit] = STATE(2183), + [sym_unquoting_lit] = STATE(2183), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2183), + [sym_package_lit] = STATE(2183), + [sym_include_reader_macro] = STATE(2183), + [sym_complex_num_lit] = STATE(2183), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3400), + [sym_comment] = ACTIONS(3400), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3711), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3711), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3711), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3713), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [223] = { + [sym__gap] = STATE(44), + [sym_dis_expr] = STATE(44), + [sym__form] = STATE(2050), + [sym_num_lit] = STATE(2050), + [sym_kwd_lit] = STATE(2050), + [sym_str_lit] = STATE(2050), + [sym_char_lit] = STATE(2050), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2050), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2050), + [sym_set_lit] = STATE(2050), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2050), + [sym_splicing_read_cond_lit] = STATE(2050), + [sym_var_quoting_lit] = STATE(2050), + [sym_quoting_lit] = STATE(2050), + [sym_syn_quoting_lit] = STATE(2050), + [sym_unquote_splicing_lit] = STATE(2050), + [sym_unquoting_lit] = STATE(2050), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2050), + [sym_package_lit] = STATE(2050), + [sym_include_reader_macro] = STATE(2050), + [sym_complex_num_lit] = STATE(2050), + [aux_sym_dis_expr_repeat1] = STATE(44), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3715), + [sym_comment] = ACTIONS(3715), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3721), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3721), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3721), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3742), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [224] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2223), + [sym_num_lit] = STATE(2223), + [sym_kwd_lit] = STATE(2223), + [sym_str_lit] = STATE(2223), + [sym_char_lit] = STATE(2223), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2223), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2223), + [sym_set_lit] = STATE(2223), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2223), + [sym_splicing_read_cond_lit] = STATE(2223), + [sym_var_quoting_lit] = STATE(2223), + [sym_quoting_lit] = STATE(2223), + [sym_syn_quoting_lit] = STATE(2223), + [sym_unquote_splicing_lit] = STATE(2223), + [sym_unquoting_lit] = STATE(2223), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2223), + [sym_package_lit] = STATE(2223), + [sym_include_reader_macro] = STATE(2223), + [sym_complex_num_lit] = STATE(2223), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2701), + [sym_comment] = ACTIONS(2701), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3744), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3744), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3744), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3746), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [225] = { + [sym__gap] = STATE(114), + [sym_dis_expr] = STATE(114), + [sym__form] = STATE(2049), + [sym_num_lit] = STATE(2049), + [sym_kwd_lit] = STATE(2049), + [sym_str_lit] = STATE(2049), + [sym_char_lit] = STATE(2049), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2049), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2049), + [sym_set_lit] = STATE(2049), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2049), + [sym_splicing_read_cond_lit] = STATE(2049), + [sym_var_quoting_lit] = STATE(2049), + [sym_quoting_lit] = STATE(2049), + [sym_syn_quoting_lit] = STATE(2049), + [sym_unquote_splicing_lit] = STATE(2049), + [sym_unquoting_lit] = STATE(2049), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2049), + [sym_package_lit] = STATE(2049), + [sym_include_reader_macro] = STATE(2049), + [sym_complex_num_lit] = STATE(2049), + [aux_sym_dis_expr_repeat1] = STATE(114), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3748), + [sym_comment] = ACTIONS(3748), + [anon_sym_POUND_] = ACTIONS(3751), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3754), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3756), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3754), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3759), + [anon_sym_POUND_CARET] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3754), + [anon_sym_cl] = ACTIONS(3770), + [aux_sym_accumulation_verb_token1] = ACTIONS(3773), + [anon_sym_for] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_as] = ACTIONS(3773), + [anon_sym_with] = ACTIONS(3773), + [anon_sym_do] = ACTIONS(3773), + [anon_sym_while] = ACTIONS(3773), + [anon_sym_until] = ACTIONS(3773), + [anon_sym_repeat] = ACTIONS(3773), + [anon_sym_when] = ACTIONS(3773), + [anon_sym_if] = ACTIONS(3773), + [anon_sym_unless] = ACTIONS(3773), + [anon_sym_always] = ACTIONS(3773), + [anon_sym_thereis] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_else] = ACTIONS(3773), + [anon_sym_finally] = ACTIONS(3773), + [anon_sym_return] = ACTIONS(3773), + [anon_sym_initially] = ACTIONS(3773), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3775), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [226] = { + [sym__gap] = STATE(197), + [sym_dis_expr] = STATE(197), + [sym__form] = STATE(2221), + [sym_num_lit] = STATE(2221), + [sym_kwd_lit] = STATE(2221), + [sym_str_lit] = STATE(2221), + [sym_char_lit] = STATE(2221), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2221), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2221), + [sym_set_lit] = STATE(2221), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2221), + [sym_splicing_read_cond_lit] = STATE(2221), + [sym_var_quoting_lit] = STATE(2221), + [sym_quoting_lit] = STATE(2221), + [sym_syn_quoting_lit] = STATE(2221), + [sym_unquote_splicing_lit] = STATE(2221), + [sym_unquoting_lit] = STATE(2221), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2221), + [sym_package_lit] = STATE(2221), + [sym_include_reader_macro] = STATE(2221), + [sym_complex_num_lit] = STATE(2221), + [aux_sym_dis_expr_repeat1] = STATE(197), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3777), + [sym_comment] = ACTIONS(3777), + [anon_sym_POUND_] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3780), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3780), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_POUND_CARET] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3780), + [anon_sym_cl] = ACTIONS(1342), + [aux_sym_accumulation_verb_token1] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_and] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1345), + [anon_sym_with] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_until] = ACTIONS(1345), + [anon_sym_repeat] = ACTIONS(1345), + [anon_sym_when] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_unless] = ACTIONS(1345), + [anon_sym_always] = ACTIONS(1345), + [anon_sym_thereis] = ACTIONS(1345), + [anon_sym_never] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_finally] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_initially] = ACTIONS(1345), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3782), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [227] = { + [sym__gap] = STATE(276), + [sym_dis_expr] = STATE(276), + [sym__form] = STATE(2717), + [sym_num_lit] = STATE(2717), + [sym_kwd_lit] = STATE(2717), + [sym_str_lit] = STATE(2717), + [sym_char_lit] = STATE(2717), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2717), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2717), + [sym_set_lit] = STATE(2717), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2717), + [sym_splicing_read_cond_lit] = STATE(2717), + [sym_var_quoting_lit] = STATE(2717), + [sym_quoting_lit] = STATE(2717), + [sym_syn_quoting_lit] = STATE(2717), + [sym_unquote_splicing_lit] = STATE(2717), + [sym_unquoting_lit] = STATE(2717), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2717), + [sym_package_lit] = STATE(2717), + [sym_include_reader_macro] = STATE(2717), + [sym_complex_num_lit] = STATE(2717), + [aux_sym_dis_expr_repeat1] = STATE(276), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1272), + [sym__ws] = ACTIONS(3784), + [sym_comment] = ACTIONS(3784), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(3786), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(3786), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3786), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(3788), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [228] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2128), + [sym_num_lit] = STATE(2128), + [sym_kwd_lit] = STATE(2128), + [sym_str_lit] = STATE(2128), + [sym_char_lit] = STATE(2128), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2128), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2128), + [sym_set_lit] = STATE(2128), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2128), + [sym_splicing_read_cond_lit] = STATE(2128), + [sym_var_quoting_lit] = STATE(2128), + [sym_quoting_lit] = STATE(2128), + [sym_syn_quoting_lit] = STATE(2128), + [sym_unquote_splicing_lit] = STATE(2128), + [sym_unquoting_lit] = STATE(2128), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2128), + [sym_package_lit] = STATE(2128), + [sym_include_reader_macro] = STATE(2128), + [sym_complex_num_lit] = STATE(2128), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3697), + [sym_comment] = ACTIONS(3697), + [anon_sym_POUND_] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3790), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3790), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_POUND_CARET] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3790), + [anon_sym_cl] = ACTIONS(2812), + [aux_sym_accumulation_verb_token1] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_until] = ACTIONS(2815), + [anon_sym_repeat] = ACTIONS(2815), + [anon_sym_when] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_unless] = ACTIONS(2815), + [anon_sym_always] = ACTIONS(2815), + [anon_sym_thereis] = ACTIONS(2815), + [anon_sym_never] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_finally] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_initially] = ACTIONS(2815), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3792), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [229] = { + [sym__gap] = STATE(278), + [sym_dis_expr] = STATE(278), + [sym__form] = STATE(2713), + [sym_num_lit] = STATE(2713), + [sym_kwd_lit] = STATE(2713), + [sym_str_lit] = STATE(2713), + [sym_char_lit] = STATE(2713), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2713), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2713), + [sym_set_lit] = STATE(2713), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2713), + [sym_splicing_read_cond_lit] = STATE(2713), + [sym_var_quoting_lit] = STATE(2713), + [sym_quoting_lit] = STATE(2713), + [sym_syn_quoting_lit] = STATE(2713), + [sym_unquote_splicing_lit] = STATE(2713), + [sym_unquoting_lit] = STATE(2713), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2713), + [sym_package_lit] = STATE(2713), + [sym_include_reader_macro] = STATE(2713), + [sym_complex_num_lit] = STATE(2713), + [aux_sym_dis_expr_repeat1] = STATE(278), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1268), + [sym__ws] = ACTIONS(3794), + [sym_comment] = ACTIONS(3794), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(3796), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(3796), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3796), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(3798), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [230] = { + [sym__gap] = STATE(196), + [sym_dis_expr] = STATE(196), + [sym__form] = STATE(2219), + [sym_num_lit] = STATE(2219), + [sym_kwd_lit] = STATE(2219), + [sym_str_lit] = STATE(2219), + [sym_char_lit] = STATE(2219), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2219), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2219), + [sym_set_lit] = STATE(2219), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2219), + [sym_splicing_read_cond_lit] = STATE(2219), + [sym_var_quoting_lit] = STATE(2219), + [sym_quoting_lit] = STATE(2219), + [sym_syn_quoting_lit] = STATE(2219), + [sym_unquote_splicing_lit] = STATE(2219), + [sym_unquoting_lit] = STATE(2219), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2219), + [sym_package_lit] = STATE(2219), + [sym_include_reader_macro] = STATE(2219), + [sym_complex_num_lit] = STATE(2219), + [aux_sym_dis_expr_repeat1] = STATE(196), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3800), + [sym_comment] = ACTIONS(3800), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3803), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3803), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3803), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3805), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [231] = { + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [sym__form] = STATE(2070), + [sym_num_lit] = STATE(2070), + [sym_kwd_lit] = STATE(2070), + [sym_str_lit] = STATE(2070), + [sym_char_lit] = STATE(2070), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2070), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2070), + [sym_set_lit] = STATE(2070), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2070), + [sym_splicing_read_cond_lit] = STATE(2070), + [sym_var_quoting_lit] = STATE(2070), + [sym_quoting_lit] = STATE(2070), + [sym_syn_quoting_lit] = STATE(2070), + [sym_unquote_splicing_lit] = STATE(2070), + [sym_unquoting_lit] = STATE(2070), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2070), + [sym_package_lit] = STATE(2070), + [sym_include_reader_macro] = STATE(2070), + [sym_complex_num_lit] = STATE(2070), + [aux_sym_dis_expr_repeat1] = STATE(121), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3807), + [sym_comment] = ACTIONS(3807), + [anon_sym_POUND_] = ACTIONS(3810), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3813), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3815), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3813), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3818), + [anon_sym_POUND_CARET] = ACTIONS(3821), + [anon_sym_LPAREN] = ACTIONS(3824), + [anon_sym_RPAREN] = ACTIONS(3827), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3813), + [anon_sym_cl] = ACTIONS(3829), + [aux_sym_accumulation_verb_token1] = ACTIONS(3832), + [anon_sym_for] = ACTIONS(3832), + [anon_sym_and] = ACTIONS(3832), + [anon_sym_as] = ACTIONS(3832), + [anon_sym_with] = ACTIONS(3832), + [anon_sym_do] = ACTIONS(3832), + [anon_sym_while] = ACTIONS(3832), + [anon_sym_until] = ACTIONS(3832), + [anon_sym_repeat] = ACTIONS(3832), + [anon_sym_when] = ACTIONS(3832), + [anon_sym_if] = ACTIONS(3832), + [anon_sym_unless] = ACTIONS(3832), + [anon_sym_always] = ACTIONS(3832), + [anon_sym_thereis] = ACTIONS(3832), + [anon_sym_never] = ACTIONS(3832), + [anon_sym_else] = ACTIONS(3832), + [anon_sym_finally] = ACTIONS(3832), + [anon_sym_return] = ACTIONS(3832), + [anon_sym_initially] = ACTIONS(3832), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3834), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [232] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2081), + [sym_num_lit] = STATE(2081), + [sym_kwd_lit] = STATE(2081), + [sym_str_lit] = STATE(2081), + [sym_char_lit] = STATE(2081), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2081), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2081), + [sym_set_lit] = STATE(2081), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2081), + [sym_splicing_read_cond_lit] = STATE(2081), + [sym_var_quoting_lit] = STATE(2081), + [sym_quoting_lit] = STATE(2081), + [sym_syn_quoting_lit] = STATE(2081), + [sym_unquote_splicing_lit] = STATE(2081), + [sym_unquoting_lit] = STATE(2081), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2081), + [sym_package_lit] = STATE(2081), + [sym_include_reader_macro] = STATE(2081), + [sym_complex_num_lit] = STATE(2081), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3836), + [sym_comment] = ACTIONS(3836), + [anon_sym_POUND_] = ACTIONS(3751), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3839), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3756), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3839), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3759), + [anon_sym_POUND_CARET] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3839), + [anon_sym_cl] = ACTIONS(3770), + [aux_sym_accumulation_verb_token1] = ACTIONS(3773), + [anon_sym_for] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_as] = ACTIONS(3773), + [anon_sym_with] = ACTIONS(3773), + [anon_sym_do] = ACTIONS(3773), + [anon_sym_while] = ACTIONS(3773), + [anon_sym_until] = ACTIONS(3773), + [anon_sym_repeat] = ACTIONS(3773), + [anon_sym_when] = ACTIONS(3773), + [anon_sym_if] = ACTIONS(3773), + [anon_sym_unless] = ACTIONS(3773), + [anon_sym_always] = ACTIONS(3773), + [anon_sym_thereis] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_else] = ACTIONS(3773), + [anon_sym_finally] = ACTIONS(3773), + [anon_sym_return] = ACTIONS(3773), + [anon_sym_initially] = ACTIONS(3773), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3841), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [233] = { + [sym__gap] = STATE(133), + [sym_dis_expr] = STATE(133), + [sym__form] = STATE(2441), + [sym_num_lit] = STATE(2441), + [sym_kwd_lit] = STATE(2441), + [sym_str_lit] = STATE(2441), + [sym_char_lit] = STATE(2441), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2441), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2441), + [sym_set_lit] = STATE(2441), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2441), + [sym_splicing_read_cond_lit] = STATE(2441), + [sym_var_quoting_lit] = STATE(2441), + [sym_quoting_lit] = STATE(2441), + [sym_syn_quoting_lit] = STATE(2441), + [sym_unquote_splicing_lit] = STATE(2441), + [sym_unquoting_lit] = STATE(2441), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2441), + [sym_package_lit] = STATE(2441), + [sym_include_reader_macro] = STATE(2441), + [sym_complex_num_lit] = STATE(2441), + [aux_sym_dis_expr_repeat1] = STATE(133), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3843), + [sym_comment] = ACTIONS(3843), + [anon_sym_POUND_] = ACTIONS(3751), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3846), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3756), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3846), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3759), + [anon_sym_POUND_CARET] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(3768), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3846), + [anon_sym_cl] = ACTIONS(3770), + [aux_sym_accumulation_verb_token1] = ACTIONS(3773), + [anon_sym_for] = ACTIONS(3773), + [anon_sym_and] = ACTIONS(3773), + [anon_sym_as] = ACTIONS(3773), + [anon_sym_with] = ACTIONS(3773), + [anon_sym_do] = ACTIONS(3773), + [anon_sym_while] = ACTIONS(3773), + [anon_sym_until] = ACTIONS(3773), + [anon_sym_repeat] = ACTIONS(3773), + [anon_sym_when] = ACTIONS(3773), + [anon_sym_if] = ACTIONS(3773), + [anon_sym_unless] = ACTIONS(3773), + [anon_sym_always] = ACTIONS(3773), + [anon_sym_thereis] = ACTIONS(3773), + [anon_sym_never] = ACTIONS(3773), + [anon_sym_else] = ACTIONS(3773), + [anon_sym_finally] = ACTIONS(3773), + [anon_sym_return] = ACTIONS(3773), + [anon_sym_initially] = ACTIONS(3773), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3848), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [234] = { + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [sym__form] = STATE(2127), + [sym_num_lit] = STATE(2127), + [sym_kwd_lit] = STATE(2127), + [sym_str_lit] = STATE(2127), + [sym_char_lit] = STATE(2127), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2127), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2127), + [sym_set_lit] = STATE(2127), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2127), + [sym_splicing_read_cond_lit] = STATE(2127), + [sym_var_quoting_lit] = STATE(2127), + [sym_quoting_lit] = STATE(2127), + [sym_syn_quoting_lit] = STATE(2127), + [sym_unquote_splicing_lit] = STATE(2127), + [sym_unquoting_lit] = STATE(2127), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2127), + [sym_package_lit] = STATE(2127), + [sym_include_reader_macro] = STATE(2127), + [sym_complex_num_lit] = STATE(2127), + [aux_sym_dis_expr_repeat1] = STATE(104), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3850), + [sym_comment] = ACTIONS(3850), + [anon_sym_POUND_] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3853), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2798), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3853), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2801), + [anon_sym_POUND_CARET] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_RPAREN] = ACTIONS(2810), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3853), + [anon_sym_cl] = ACTIONS(2812), + [aux_sym_accumulation_verb_token1] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_and] = ACTIONS(2815), + [anon_sym_as] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_until] = ACTIONS(2815), + [anon_sym_repeat] = ACTIONS(2815), + [anon_sym_when] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_unless] = ACTIONS(2815), + [anon_sym_always] = ACTIONS(2815), + [anon_sym_thereis] = ACTIONS(2815), + [anon_sym_never] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_finally] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_initially] = ACTIONS(2815), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3855), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [235] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2217), + [sym_num_lit] = STATE(2217), + [sym_kwd_lit] = STATE(2217), + [sym_str_lit] = STATE(2217), + [sym_char_lit] = STATE(2217), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2217), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2217), + [sym_set_lit] = STATE(2217), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2217), + [sym_splicing_read_cond_lit] = STATE(2217), + [sym_var_quoting_lit] = STATE(2217), + [sym_quoting_lit] = STATE(2217), + [sym_syn_quoting_lit] = STATE(2217), + [sym_unquote_splicing_lit] = STATE(2217), + [sym_unquoting_lit] = STATE(2217), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2217), + [sym_package_lit] = STATE(2217), + [sym_include_reader_macro] = STATE(2217), + [sym_complex_num_lit] = STATE(2217), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(2618), + [sym_comment] = ACTIONS(2618), + [anon_sym_POUND_] = ACTIONS(2621), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3857), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2626), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3857), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_POUND_CARET] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2638), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3857), + [anon_sym_cl] = ACTIONS(2640), + [aux_sym_accumulation_verb_token1] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_until] = ACTIONS(2643), + [anon_sym_repeat] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_unless] = ACTIONS(2643), + [anon_sym_always] = ACTIONS(2643), + [anon_sym_thereis] = ACTIONS(2643), + [anon_sym_never] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_finally] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_initially] = ACTIONS(2643), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3859), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [236] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2048), + [sym_num_lit] = STATE(2048), + [sym_kwd_lit] = STATE(2048), + [sym_str_lit] = STATE(2048), + [sym_char_lit] = STATE(2048), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2048), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2048), + [sym_set_lit] = STATE(2048), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2048), + [sym_splicing_read_cond_lit] = STATE(2048), + [sym_var_quoting_lit] = STATE(2048), + [sym_quoting_lit] = STATE(2048), + [sym_syn_quoting_lit] = STATE(2048), + [sym_unquote_splicing_lit] = STATE(2048), + [sym_unquoting_lit] = STATE(2048), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2048), + [sym_package_lit] = STATE(2048), + [sym_include_reader_macro] = STATE(2048), + [sym_complex_num_lit] = STATE(2048), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3861), + [sym_comment] = ACTIONS(3861), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3864), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3864), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3864), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3866), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [237] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2461), + [sym_num_lit] = STATE(2461), + [sym_kwd_lit] = STATE(2461), + [sym_str_lit] = STATE(2461), + [sym_char_lit] = STATE(2461), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2461), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2461), + [sym_set_lit] = STATE(2461), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2461), + [sym_splicing_read_cond_lit] = STATE(2461), + [sym_var_quoting_lit] = STATE(2461), + [sym_quoting_lit] = STATE(2461), + [sym_syn_quoting_lit] = STATE(2461), + [sym_unquote_splicing_lit] = STATE(2461), + [sym_unquoting_lit] = STATE(2461), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2461), + [sym_package_lit] = STATE(2461), + [sym_include_reader_macro] = STATE(2461), + [sym_complex_num_lit] = STATE(2461), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3306), + [sym_comment] = ACTIONS(3306), + [anon_sym_POUND_] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3868), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3868), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_POUND_CARET] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3868), + [anon_sym_cl] = ACTIONS(3328), + [aux_sym_accumulation_verb_token1] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_and] = ACTIONS(3331), + [anon_sym_as] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_until] = ACTIONS(3331), + [anon_sym_repeat] = ACTIONS(3331), + [anon_sym_when] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_unless] = ACTIONS(3331), + [anon_sym_always] = ACTIONS(3331), + [anon_sym_thereis] = ACTIONS(3331), + [anon_sym_never] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_finally] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_initially] = ACTIONS(3331), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3870), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [238] = { + [sym__gap] = STATE(137), + [sym_dis_expr] = STATE(137), + [sym__form] = STATE(2138), + [sym_num_lit] = STATE(2138), + [sym_kwd_lit] = STATE(2138), + [sym_str_lit] = STATE(2138), + [sym_char_lit] = STATE(2138), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2138), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2138), + [sym_set_lit] = STATE(2138), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2138), + [sym_splicing_read_cond_lit] = STATE(2138), + [sym_var_quoting_lit] = STATE(2138), + [sym_quoting_lit] = STATE(2138), + [sym_syn_quoting_lit] = STATE(2138), + [sym_unquote_splicing_lit] = STATE(2138), + [sym_unquoting_lit] = STATE(2138), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2138), + [sym_package_lit] = STATE(2138), + [sym_include_reader_macro] = STATE(2138), + [sym_complex_num_lit] = STATE(2138), + [aux_sym_dis_expr_repeat1] = STATE(137), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3872), + [sym_comment] = ACTIONS(3872), + [anon_sym_POUND_] = ACTIONS(3875), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3878), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3878), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3883), + [anon_sym_POUND_CARET] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3878), + [anon_sym_cl] = ACTIONS(3894), + [aux_sym_accumulation_verb_token1] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3897), + [anon_sym_and] = ACTIONS(3897), + [anon_sym_as] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(3897), + [anon_sym_while] = ACTIONS(3897), + [anon_sym_until] = ACTIONS(3897), + [anon_sym_repeat] = ACTIONS(3897), + [anon_sym_when] = ACTIONS(3897), + [anon_sym_if] = ACTIONS(3897), + [anon_sym_unless] = ACTIONS(3897), + [anon_sym_always] = ACTIONS(3897), + [anon_sym_thereis] = ACTIONS(3897), + [anon_sym_never] = ACTIONS(3897), + [anon_sym_else] = ACTIONS(3897), + [anon_sym_finally] = ACTIONS(3897), + [anon_sym_return] = ACTIONS(3897), + [anon_sym_initially] = ACTIONS(3897), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3899), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [239] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2140), + [sym_num_lit] = STATE(2140), + [sym_kwd_lit] = STATE(2140), + [sym_str_lit] = STATE(2140), + [sym_char_lit] = STATE(2140), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2140), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2140), + [sym_set_lit] = STATE(2140), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2140), + [sym_splicing_read_cond_lit] = STATE(2140), + [sym_var_quoting_lit] = STATE(2140), + [sym_quoting_lit] = STATE(2140), + [sym_syn_quoting_lit] = STATE(2140), + [sym_unquote_splicing_lit] = STATE(2140), + [sym_unquoting_lit] = STATE(2140), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2140), + [sym_package_lit] = STATE(2140), + [sym_include_reader_macro] = STATE(2140), + [sym_complex_num_lit] = STATE(2140), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3901), + [sym_comment] = ACTIONS(3901), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3907), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3907), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3907), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3928), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [240] = { + [sym__gap] = STATE(142), + [sym_dis_expr] = STATE(142), + [sym__form] = STATE(2142), + [sym_num_lit] = STATE(2142), + [sym_kwd_lit] = STATE(2142), + [sym_str_lit] = STATE(2142), + [sym_char_lit] = STATE(2142), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2142), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2142), + [sym_set_lit] = STATE(2142), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2142), + [sym_splicing_read_cond_lit] = STATE(2142), + [sym_var_quoting_lit] = STATE(2142), + [sym_quoting_lit] = STATE(2142), + [sym_syn_quoting_lit] = STATE(2142), + [sym_unquote_splicing_lit] = STATE(2142), + [sym_unquoting_lit] = STATE(2142), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2142), + [sym_package_lit] = STATE(2142), + [sym_include_reader_macro] = STATE(2142), + [sym_complex_num_lit] = STATE(2142), + [aux_sym_dis_expr_repeat1] = STATE(142), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3930), + [sym_comment] = ACTIONS(3930), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3933), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3933), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3933), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3935), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [241] = { + [sym__gap] = STATE(189), + [sym_dis_expr] = STATE(189), + [sym__form] = STATE(2215), + [sym_num_lit] = STATE(2215), + [sym_kwd_lit] = STATE(2215), + [sym_str_lit] = STATE(2215), + [sym_char_lit] = STATE(2215), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2215), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2215), + [sym_set_lit] = STATE(2215), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2215), + [sym_splicing_read_cond_lit] = STATE(2215), + [sym_var_quoting_lit] = STATE(2215), + [sym_quoting_lit] = STATE(2215), + [sym_syn_quoting_lit] = STATE(2215), + [sym_unquote_splicing_lit] = STATE(2215), + [sym_unquoting_lit] = STATE(2215), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2215), + [sym_package_lit] = STATE(2215), + [sym_include_reader_macro] = STATE(2215), + [sym_complex_num_lit] = STATE(2215), + [aux_sym_dis_expr_repeat1] = STATE(189), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3937), + [sym_comment] = ACTIONS(3937), + [anon_sym_POUND_] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3940), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3940), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_POUND_CARET] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3940), + [anon_sym_cl] = ACTIONS(2946), + [aux_sym_accumulation_verb_token1] = ACTIONS(2949), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_and] = ACTIONS(2949), + [anon_sym_as] = ACTIONS(2949), + [anon_sym_with] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_until] = ACTIONS(2949), + [anon_sym_repeat] = ACTIONS(2949), + [anon_sym_when] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_unless] = ACTIONS(2949), + [anon_sym_always] = ACTIONS(2949), + [anon_sym_thereis] = ACTIONS(2949), + [anon_sym_never] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_finally] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_initially] = ACTIONS(2949), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3942), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [242] = { + [sym__gap] = STATE(143), + [sym_dis_expr] = STATE(143), + [sym__form] = STATE(2144), + [sym_num_lit] = STATE(2144), + [sym_kwd_lit] = STATE(2144), + [sym_str_lit] = STATE(2144), + [sym_char_lit] = STATE(2144), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2144), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2144), + [sym_set_lit] = STATE(2144), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2144), + [sym_splicing_read_cond_lit] = STATE(2144), + [sym_var_quoting_lit] = STATE(2144), + [sym_quoting_lit] = STATE(2144), + [sym_syn_quoting_lit] = STATE(2144), + [sym_unquote_splicing_lit] = STATE(2144), + [sym_unquoting_lit] = STATE(2144), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2144), + [sym_package_lit] = STATE(2144), + [sym_include_reader_macro] = STATE(2144), + [sym_complex_num_lit] = STATE(2144), + [aux_sym_dis_expr_repeat1] = STATE(143), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3944), + [sym_comment] = ACTIONS(3944), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3950), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3950), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3950), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3971), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [243] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2146), + [sym_num_lit] = STATE(2146), + [sym_kwd_lit] = STATE(2146), + [sym_str_lit] = STATE(2146), + [sym_char_lit] = STATE(2146), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2146), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2146), + [sym_set_lit] = STATE(2146), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2146), + [sym_splicing_read_cond_lit] = STATE(2146), + [sym_var_quoting_lit] = STATE(2146), + [sym_quoting_lit] = STATE(2146), + [sym_syn_quoting_lit] = STATE(2146), + [sym_unquote_splicing_lit] = STATE(2146), + [sym_unquoting_lit] = STATE(2146), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2146), + [sym_package_lit] = STATE(2146), + [sym_include_reader_macro] = STATE(2146), + [sym_complex_num_lit] = STATE(2146), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3973), + [sym_comment] = ACTIONS(3973), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3976), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3976), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3976), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3978), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [244] = { + [sym__gap] = STATE(147), + [sym_dis_expr] = STATE(147), + [sym__form] = STATE(2148), + [sym_num_lit] = STATE(2148), + [sym_kwd_lit] = STATE(2148), + [sym_str_lit] = STATE(2148), + [sym_char_lit] = STATE(2148), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2148), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2148), + [sym_set_lit] = STATE(2148), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2148), + [sym_splicing_read_cond_lit] = STATE(2148), + [sym_var_quoting_lit] = STATE(2148), + [sym_quoting_lit] = STATE(2148), + [sym_syn_quoting_lit] = STATE(2148), + [sym_unquote_splicing_lit] = STATE(2148), + [sym_unquoting_lit] = STATE(2148), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2148), + [sym_package_lit] = STATE(2148), + [sym_include_reader_macro] = STATE(2148), + [sym_complex_num_lit] = STATE(2148), + [aux_sym_dis_expr_repeat1] = STATE(147), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3980), + [sym_comment] = ACTIONS(3980), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3983), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3983), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3983), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3985), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [245] = { + [sym__gap] = STATE(149), + [sym_dis_expr] = STATE(149), + [sym__form] = STATE(2150), + [sym_num_lit] = STATE(2150), + [sym_kwd_lit] = STATE(2150), + [sym_str_lit] = STATE(2150), + [sym_char_lit] = STATE(2150), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2150), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2150), + [sym_set_lit] = STATE(2150), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2150), + [sym_splicing_read_cond_lit] = STATE(2150), + [sym_var_quoting_lit] = STATE(2150), + [sym_quoting_lit] = STATE(2150), + [sym_syn_quoting_lit] = STATE(2150), + [sym_unquote_splicing_lit] = STATE(2150), + [sym_unquoting_lit] = STATE(2150), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2150), + [sym_package_lit] = STATE(2150), + [sym_include_reader_macro] = STATE(2150), + [sym_complex_num_lit] = STATE(2150), + [aux_sym_dis_expr_repeat1] = STATE(149), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3987), + [sym_comment] = ACTIONS(3987), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(3990), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(3990), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(3990), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(3992), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [246] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2467), + [sym_num_lit] = STATE(2467), + [sym_kwd_lit] = STATE(2467), + [sym_str_lit] = STATE(2467), + [sym_char_lit] = STATE(2467), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2467), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2467), + [sym_set_lit] = STATE(2467), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2467), + [sym_splicing_read_cond_lit] = STATE(2467), + [sym_var_quoting_lit] = STATE(2467), + [sym_quoting_lit] = STATE(2467), + [sym_syn_quoting_lit] = STATE(2467), + [sym_unquote_splicing_lit] = STATE(2467), + [sym_unquoting_lit] = STATE(2467), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2467), + [sym_package_lit] = STATE(2467), + [sym_include_reader_macro] = STATE(2467), + [sym_complex_num_lit] = STATE(2467), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3994), + [sym_comment] = ACTIONS(3994), + [anon_sym_POUND_] = ACTIONS(3997), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4000), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(4002), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4000), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(4005), + [anon_sym_POUND_CARET] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4011), + [anon_sym_RPAREN] = ACTIONS(4014), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4000), + [anon_sym_cl] = ACTIONS(4016), + [aux_sym_accumulation_verb_token1] = ACTIONS(4019), + [anon_sym_for] = ACTIONS(4019), + [anon_sym_and] = ACTIONS(4019), + [anon_sym_as] = ACTIONS(4019), + [anon_sym_with] = ACTIONS(4019), + [anon_sym_do] = ACTIONS(4019), + [anon_sym_while] = ACTIONS(4019), + [anon_sym_until] = ACTIONS(4019), + [anon_sym_repeat] = ACTIONS(4019), + [anon_sym_when] = ACTIONS(4019), + [anon_sym_if] = ACTIONS(4019), + [anon_sym_unless] = ACTIONS(4019), + [anon_sym_always] = ACTIONS(4019), + [anon_sym_thereis] = ACTIONS(4019), + [anon_sym_never] = ACTIONS(4019), + [anon_sym_else] = ACTIONS(4019), + [anon_sym_finally] = ACTIONS(4019), + [anon_sym_return] = ACTIONS(4019), + [anon_sym_initially] = ACTIONS(4019), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4021), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [247] = { + [sym__gap] = STATE(271), + [sym_dis_expr] = STATE(271), + [sym__form] = STATE(2733), + [sym_num_lit] = STATE(2733), + [sym_kwd_lit] = STATE(2733), + [sym_str_lit] = STATE(2733), + [sym_char_lit] = STATE(2733), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2733), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2733), + [sym_set_lit] = STATE(2733), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2733), + [sym_splicing_read_cond_lit] = STATE(2733), + [sym_var_quoting_lit] = STATE(2733), + [sym_quoting_lit] = STATE(2733), + [sym_syn_quoting_lit] = STATE(2733), + [sym_unquote_splicing_lit] = STATE(2733), + [sym_unquoting_lit] = STATE(2733), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2733), + [sym_package_lit] = STATE(2733), + [sym_include_reader_macro] = STATE(2733), + [sym_complex_num_lit] = STATE(2733), + [aux_sym_dis_expr_repeat1] = STATE(271), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1282), + [sym__ws] = ACTIONS(4023), + [sym_comment] = ACTIONS(4023), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4025), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4025), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4025), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4027), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [248] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [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(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2092), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2092), + [sym_set_lit] = STATE(2092), + [sym__bare_set_lit] = STATE(2625), + [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(2648), + [sym_loop_macro] = STATE(2648), + [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(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1580), + [sym_comment] = ACTIONS(1580), + [anon_sym_POUND_] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4029), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4029), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_POUND_CARET] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4029), + [anon_sym_cl] = ACTIONS(1602), + [aux_sym_accumulation_verb_token1] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_and] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_until] = ACTIONS(1605), + [anon_sym_repeat] = ACTIONS(1605), + [anon_sym_when] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_unless] = ACTIONS(1605), + [anon_sym_always] = ACTIONS(1605), + [anon_sym_thereis] = ACTIONS(1605), + [anon_sym_never] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_finally] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_initially] = ACTIONS(1605), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4031), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [249] = { + [sym__gap] = STATE(272), + [sym_dis_expr] = STATE(272), + [sym__form] = STATE(2734), + [sym_num_lit] = STATE(2734), + [sym_kwd_lit] = STATE(2734), + [sym_str_lit] = STATE(2734), + [sym_char_lit] = STATE(2734), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2734), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2734), + [sym_set_lit] = STATE(2734), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2734), + [sym_splicing_read_cond_lit] = STATE(2734), + [sym_var_quoting_lit] = STATE(2734), + [sym_quoting_lit] = STATE(2734), + [sym_syn_quoting_lit] = STATE(2734), + [sym_unquote_splicing_lit] = STATE(2734), + [sym_unquoting_lit] = STATE(2734), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(405), + [sym__for_part] = STATE(1611), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2734), + [sym_package_lit] = STATE(2734), + [sym_include_reader_macro] = STATE(2734), + [sym_complex_num_lit] = STATE(2734), + [aux_sym_dis_expr_repeat1] = STATE(272), + [aux_sym_list_lit_repeat1] = STATE(2821), + [aux_sym_for_clause_repeat1] = STATE(1274), + [sym__ws] = ACTIONS(4033), + [sym_comment] = ACTIONS(4033), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4035), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4035), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4035), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4037), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [250] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2151), + [sym_num_lit] = STATE(2151), + [sym_kwd_lit] = STATE(2151), + [sym_str_lit] = STATE(2151), + [sym_char_lit] = STATE(2151), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2151), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2151), + [sym_set_lit] = STATE(2151), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2151), + [sym_splicing_read_cond_lit] = STATE(2151), + [sym_var_quoting_lit] = STATE(2151), + [sym_quoting_lit] = STATE(2151), + [sym_syn_quoting_lit] = STATE(2151), + [sym_unquote_splicing_lit] = STATE(2151), + [sym_unquoting_lit] = STATE(2151), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2151), + [sym_package_lit] = STATE(2151), + [sym_include_reader_macro] = STATE(2151), + [sym_complex_num_lit] = STATE(2151), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3901), + [sym_comment] = ACTIONS(3901), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4039), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4039), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4039), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4041), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [251] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2190), + [sym_num_lit] = STATE(2190), + [sym_kwd_lit] = STATE(2190), + [sym_str_lit] = STATE(2190), + [sym_char_lit] = STATE(2190), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2190), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2190), + [sym_set_lit] = STATE(2190), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2190), + [sym_splicing_read_cond_lit] = STATE(2190), + [sym_var_quoting_lit] = STATE(2190), + [sym_quoting_lit] = STATE(2190), + [sym_syn_quoting_lit] = STATE(2190), + [sym_unquote_splicing_lit] = STATE(2190), + [sym_unquoting_lit] = STATE(2190), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2190), + [sym_package_lit] = STATE(2190), + [sym_include_reader_macro] = STATE(2190), + [sym_complex_num_lit] = STATE(2190), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3393), + [sym_comment] = ACTIONS(3393), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4043), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4043), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4043), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4045), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [252] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2188), + [sym_num_lit] = STATE(2188), + [sym_kwd_lit] = STATE(2188), + [sym_str_lit] = STATE(2188), + [sym_char_lit] = STATE(2188), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2188), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2188), + [sym_set_lit] = STATE(2188), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2188), + [sym_splicing_read_cond_lit] = STATE(2188), + [sym_var_quoting_lit] = STATE(2188), + [sym_quoting_lit] = STATE(2188), + [sym_syn_quoting_lit] = STATE(2188), + [sym_unquote_splicing_lit] = STATE(2188), + [sym_unquoting_lit] = STATE(2188), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2188), + [sym_package_lit] = STATE(2188), + [sym_include_reader_macro] = STATE(2188), + [sym_complex_num_lit] = STATE(2188), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3400), + [sym_comment] = ACTIONS(3400), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4047), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4047), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4047), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4049), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [253] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2157), + [sym_num_lit] = STATE(2157), + [sym_kwd_lit] = STATE(2157), + [sym_str_lit] = STATE(2157), + [sym_char_lit] = STATE(2157), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2157), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2157), + [sym_set_lit] = STATE(2157), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2157), + [sym_splicing_read_cond_lit] = STATE(2157), + [sym_var_quoting_lit] = STATE(2157), + [sym_quoting_lit] = STATE(2157), + [sym_syn_quoting_lit] = STATE(2157), + [sym_unquote_splicing_lit] = STATE(2157), + [sym_unquoting_lit] = STATE(2157), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2157), + [sym_package_lit] = STATE(2157), + [sym_include_reader_macro] = STATE(2157), + [sym_complex_num_lit] = STATE(2157), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3861), + [sym_comment] = ACTIONS(3861), + [anon_sym_POUND_] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4051), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3723), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4051), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3726), + [anon_sym_POUND_CARET] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3732), + [anon_sym_RPAREN] = ACTIONS(3735), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4051), + [anon_sym_cl] = ACTIONS(3737), + [aux_sym_accumulation_verb_token1] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_and] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_until] = ACTIONS(3740), + [anon_sym_repeat] = ACTIONS(3740), + [anon_sym_when] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_unless] = ACTIONS(3740), + [anon_sym_always] = ACTIONS(3740), + [anon_sym_thereis] = ACTIONS(3740), + [anon_sym_never] = ACTIONS(3740), + [anon_sym_else] = ACTIONS(3740), + [anon_sym_finally] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_initially] = ACTIONS(3740), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4053), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [254] = { + [sym__gap] = STATE(187), + [sym_dis_expr] = STATE(187), + [sym__form] = STATE(2187), + [sym_num_lit] = STATE(2187), + [sym_kwd_lit] = STATE(2187), + [sym_str_lit] = STATE(2187), + [sym_char_lit] = STATE(2187), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2187), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2187), + [sym_set_lit] = STATE(2187), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2187), + [sym_splicing_read_cond_lit] = STATE(2187), + [sym_var_quoting_lit] = STATE(2187), + [sym_quoting_lit] = STATE(2187), + [sym_syn_quoting_lit] = STATE(2187), + [sym_unquote_splicing_lit] = STATE(2187), + [sym_unquoting_lit] = STATE(2187), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2187), + [sym_package_lit] = STATE(2187), + [sym_include_reader_macro] = STATE(2187), + [sym_complex_num_lit] = STATE(2187), + [aux_sym_dis_expr_repeat1] = STATE(187), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4055), + [sym_comment] = ACTIONS(4055), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4058), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4058), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4058), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4060), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [255] = { + [sym__gap] = STATE(186), + [sym_dis_expr] = STATE(186), + [sym__form] = STATE(2185), + [sym_num_lit] = STATE(2185), + [sym_kwd_lit] = STATE(2185), + [sym_str_lit] = STATE(2185), + [sym_char_lit] = STATE(2185), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2185), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2185), + [sym_set_lit] = STATE(2185), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2185), + [sym_splicing_read_cond_lit] = STATE(2185), + [sym_var_quoting_lit] = STATE(2185), + [sym_quoting_lit] = STATE(2185), + [sym_syn_quoting_lit] = STATE(2185), + [sym_unquote_splicing_lit] = STATE(2185), + [sym_unquoting_lit] = STATE(2185), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2185), + [sym_package_lit] = STATE(2185), + [sym_include_reader_macro] = STATE(2185), + [sym_complex_num_lit] = STATE(2185), + [aux_sym_dis_expr_repeat1] = STATE(186), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4062), + [sym_comment] = ACTIONS(4062), + [anon_sym_POUND_] = ACTIONS(3403), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4065), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4065), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_POUND_CARET] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4065), + [anon_sym_cl] = ACTIONS(3422), + [aux_sym_accumulation_verb_token1] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_and] = ACTIONS(3425), + [anon_sym_as] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_until] = ACTIONS(3425), + [anon_sym_repeat] = ACTIONS(3425), + [anon_sym_when] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_unless] = ACTIONS(3425), + [anon_sym_always] = ACTIONS(3425), + [anon_sym_thereis] = ACTIONS(3425), + [anon_sym_never] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_finally] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_initially] = ACTIONS(3425), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4067), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [256] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2414), + [sym_num_lit] = STATE(2414), + [sym_kwd_lit] = STATE(2414), + [sym_str_lit] = STATE(2414), + [sym_char_lit] = STATE(2414), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2414), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2414), + [sym_set_lit] = STATE(2414), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2414), + [sym_splicing_read_cond_lit] = STATE(2414), + [sym_var_quoting_lit] = STATE(2414), + [sym_quoting_lit] = STATE(2414), + [sym_syn_quoting_lit] = STATE(2414), + [sym_unquote_splicing_lit] = STATE(2414), + [sym_unquoting_lit] = STATE(2414), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2414), + [sym_package_lit] = STATE(2414), + [sym_include_reader_macro] = STATE(2414), + [sym_complex_num_lit] = STATE(2414), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(1894), + [sym_comment] = ACTIONS(1894), + [anon_sym_POUND_] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4069), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4069), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_POUND_CARET] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4069), + [anon_sym_cl] = ACTIONS(1916), + [aux_sym_accumulation_verb_token1] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_and] = ACTIONS(1919), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_until] = ACTIONS(1919), + [anon_sym_repeat] = ACTIONS(1919), + [anon_sym_when] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_unless] = ACTIONS(1919), + [anon_sym_always] = ACTIONS(1919), + [anon_sym_thereis] = ACTIONS(1919), + [anon_sym_never] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_finally] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_initially] = ACTIONS(1919), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4071), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [257] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2181), + [sym_num_lit] = STATE(2181), + [sym_kwd_lit] = STATE(2181), + [sym_str_lit] = STATE(2181), + [sym_char_lit] = STATE(2181), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2181), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2181), + [sym_set_lit] = STATE(2181), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2181), + [sym_splicing_read_cond_lit] = STATE(2181), + [sym_var_quoting_lit] = STATE(2181), + [sym_quoting_lit] = STATE(2181), + [sym_syn_quoting_lit] = STATE(2181), + [sym_unquote_splicing_lit] = STATE(2181), + [sym_unquoting_lit] = STATE(2181), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2181), + [sym_package_lit] = STATE(2181), + [sym_include_reader_macro] = STATE(2181), + [sym_complex_num_lit] = STATE(2181), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3393), + [sym_comment] = ACTIONS(3393), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4073), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4073), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4073), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4075), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [258] = { + [sym__gap] = STATE(156), + [sym_dis_expr] = STATE(156), + [sym__form] = STATE(2045), + [sym_num_lit] = STATE(2045), + [sym_kwd_lit] = STATE(2045), + [sym_str_lit] = STATE(2045), + [sym_char_lit] = STATE(2045), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2045), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2045), + [sym_set_lit] = STATE(2045), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2045), + [sym_splicing_read_cond_lit] = STATE(2045), + [sym_var_quoting_lit] = STATE(2045), + [sym_quoting_lit] = STATE(2045), + [sym_syn_quoting_lit] = STATE(2045), + [sym_unquote_splicing_lit] = STATE(2045), + [sym_unquoting_lit] = STATE(2045), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2045), + [sym_package_lit] = STATE(2045), + [sym_include_reader_macro] = STATE(2045), + [sym_complex_num_lit] = STATE(2045), + [aux_sym_dis_expr_repeat1] = STATE(156), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4077), + [sym_comment] = ACTIONS(4077), + [anon_sym_POUND_] = ACTIONS(3875), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4080), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3880), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4080), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3883), + [anon_sym_POUND_CARET] = ACTIONS(3886), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4080), + [anon_sym_cl] = ACTIONS(3894), + [aux_sym_accumulation_verb_token1] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3897), + [anon_sym_and] = ACTIONS(3897), + [anon_sym_as] = ACTIONS(3897), + [anon_sym_with] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(3897), + [anon_sym_while] = ACTIONS(3897), + [anon_sym_until] = ACTIONS(3897), + [anon_sym_repeat] = ACTIONS(3897), + [anon_sym_when] = ACTIONS(3897), + [anon_sym_if] = ACTIONS(3897), + [anon_sym_unless] = ACTIONS(3897), + [anon_sym_always] = ACTIONS(3897), + [anon_sym_thereis] = ACTIONS(3897), + [anon_sym_never] = ACTIONS(3897), + [anon_sym_else] = ACTIONS(3897), + [anon_sym_finally] = ACTIONS(3897), + [anon_sym_return] = ACTIONS(3897), + [anon_sym_initially] = ACTIONS(3897), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4082), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [259] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2159), + [sym_num_lit] = STATE(2159), + [sym_kwd_lit] = STATE(2159), + [sym_str_lit] = STATE(2159), + [sym_char_lit] = STATE(2159), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2159), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2159), + [sym_set_lit] = STATE(2159), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2159), + [sym_splicing_read_cond_lit] = STATE(2159), + [sym_var_quoting_lit] = STATE(2159), + [sym_quoting_lit] = STATE(2159), + [sym_syn_quoting_lit] = STATE(2159), + [sym_unquote_splicing_lit] = STATE(2159), + [sym_unquoting_lit] = STATE(2159), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2159), + [sym_package_lit] = STATE(2159), + [sym_include_reader_macro] = STATE(2159), + [sym_complex_num_lit] = STATE(2159), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3901), + [sym_comment] = ACTIONS(3901), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4084), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4084), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4084), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4086), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [260] = { + [sym__gap] = STATE(184), + [sym_dis_expr] = STATE(184), + [sym__form] = STATE(2180), + [sym_num_lit] = STATE(2180), + [sym_kwd_lit] = STATE(2180), + [sym_str_lit] = STATE(2180), + [sym_char_lit] = STATE(2180), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2180), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2180), + [sym_set_lit] = STATE(2180), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2180), + [sym_splicing_read_cond_lit] = STATE(2180), + [sym_var_quoting_lit] = STATE(2180), + [sym_quoting_lit] = STATE(2180), + [sym_syn_quoting_lit] = STATE(2180), + [sym_unquote_splicing_lit] = STATE(2180), + [sym_unquoting_lit] = STATE(2180), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2180), + [sym_package_lit] = STATE(2180), + [sym_include_reader_macro] = STATE(2180), + [sym_complex_num_lit] = STATE(2180), + [aux_sym_dis_expr_repeat1] = STATE(184), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4088), + [sym_comment] = ACTIONS(4088), + [anon_sym_POUND_] = ACTIONS(3367), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4091), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4091), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3375), + [anon_sym_POUND_CARET] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3384), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4091), + [anon_sym_cl] = ACTIONS(3386), + [aux_sym_accumulation_verb_token1] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_and] = ACTIONS(3389), + [anon_sym_as] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_until] = ACTIONS(3389), + [anon_sym_repeat] = ACTIONS(3389), + [anon_sym_when] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_unless] = ACTIONS(3389), + [anon_sym_always] = ACTIONS(3389), + [anon_sym_thereis] = ACTIONS(3389), + [anon_sym_never] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_finally] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_initially] = ACTIONS(3389), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4093), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [261] = { + [sym__gap] = STATE(166), + [sym_dis_expr] = STATE(166), + [sym__form] = STATE(2161), + [sym_num_lit] = STATE(2161), + [sym_kwd_lit] = STATE(2161), + [sym_str_lit] = STATE(2161), + [sym_char_lit] = STATE(2161), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2161), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2161), + [sym_set_lit] = STATE(2161), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2161), + [sym_splicing_read_cond_lit] = STATE(2161), + [sym_var_quoting_lit] = STATE(2161), + [sym_quoting_lit] = STATE(2161), + [sym_syn_quoting_lit] = STATE(2161), + [sym_unquote_splicing_lit] = STATE(2161), + [sym_unquoting_lit] = STATE(2161), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2161), + [sym_package_lit] = STATE(2161), + [sym_include_reader_macro] = STATE(2161), + [sym_complex_num_lit] = STATE(2161), + [aux_sym_dis_expr_repeat1] = STATE(166), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4095), + [sym_comment] = ACTIONS(4095), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4098), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4098), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4098), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4100), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [262] = { + [sym__gap] = STATE(183), + [sym_dis_expr] = STATE(183), + [sym__form] = STATE(2178), + [sym_num_lit] = STATE(2178), + [sym_kwd_lit] = STATE(2178), + [sym_str_lit] = STATE(2178), + [sym_char_lit] = STATE(2178), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2178), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2178), + [sym_set_lit] = STATE(2178), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2178), + [sym_splicing_read_cond_lit] = STATE(2178), + [sym_var_quoting_lit] = STATE(2178), + [sym_quoting_lit] = STATE(2178), + [sym_syn_quoting_lit] = STATE(2178), + [sym_unquote_splicing_lit] = STATE(2178), + [sym_unquoting_lit] = STATE(2178), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2178), + [sym_package_lit] = STATE(2178), + [sym_include_reader_macro] = STATE(2178), + [sym_complex_num_lit] = STATE(2178), + [aux_sym_dis_expr_repeat1] = STATE(183), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4102), + [sym_comment] = ACTIONS(4102), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4105), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4105), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4105), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4107), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [263] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2176), + [sym_num_lit] = STATE(2176), + [sym_kwd_lit] = STATE(2176), + [sym_str_lit] = STATE(2176), + [sym_char_lit] = STATE(2176), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2176), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2176), + [sym_set_lit] = STATE(2176), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2176), + [sym_splicing_read_cond_lit] = STATE(2176), + [sym_var_quoting_lit] = STATE(2176), + [sym_quoting_lit] = STATE(2176), + [sym_syn_quoting_lit] = STATE(2176), + [sym_unquote_splicing_lit] = STATE(2176), + [sym_unquoting_lit] = STATE(2176), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2176), + [sym_package_lit] = STATE(2176), + [sym_include_reader_macro] = STATE(2176), + [sym_complex_num_lit] = STATE(2176), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3269), + [sym_comment] = ACTIONS(3269), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4109), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4109), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4109), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4111), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [264] = { + [sym__gap] = STATE(167), + [sym_dis_expr] = STATE(167), + [sym__form] = STATE(2163), + [sym_num_lit] = STATE(2163), + [sym_kwd_lit] = STATE(2163), + [sym_str_lit] = STATE(2163), + [sym_char_lit] = STATE(2163), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2163), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2163), + [sym_set_lit] = STATE(2163), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2163), + [sym_splicing_read_cond_lit] = STATE(2163), + [sym_var_quoting_lit] = STATE(2163), + [sym_quoting_lit] = STATE(2163), + [sym_syn_quoting_lit] = STATE(2163), + [sym_unquote_splicing_lit] = STATE(2163), + [sym_unquoting_lit] = STATE(2163), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2163), + [sym_package_lit] = STATE(2163), + [sym_include_reader_macro] = STATE(2163), + [sym_complex_num_lit] = STATE(2163), + [aux_sym_dis_expr_repeat1] = STATE(167), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4113), + [sym_comment] = ACTIONS(4113), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4116), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4116), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4116), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4118), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [265] = { + [sym__gap] = STATE(176), + [sym_dis_expr] = STATE(176), + [sym__form] = STATE(2174), + [sym_num_lit] = STATE(2174), + [sym_kwd_lit] = STATE(2174), + [sym_str_lit] = STATE(2174), + [sym_char_lit] = STATE(2174), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2174), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2174), + [sym_set_lit] = STATE(2174), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2174), + [sym_splicing_read_cond_lit] = STATE(2174), + [sym_var_quoting_lit] = STATE(2174), + [sym_quoting_lit] = STATE(2174), + [sym_syn_quoting_lit] = STATE(2174), + [sym_unquote_splicing_lit] = STATE(2174), + [sym_unquoting_lit] = STATE(2174), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2174), + [sym_package_lit] = STATE(2174), + [sym_include_reader_macro] = STATE(2174), + [sym_complex_num_lit] = STATE(2174), + [aux_sym_dis_expr_repeat1] = STATE(176), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4120), + [sym_comment] = ACTIONS(4120), + [anon_sym_POUND_] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4123), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4123), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_POUND_CARET] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3260), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4123), + [anon_sym_cl] = ACTIONS(3262), + [aux_sym_accumulation_verb_token1] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_and] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_with] = ACTIONS(3265), + [anon_sym_do] = ACTIONS(3265), + [anon_sym_while] = ACTIONS(3265), + [anon_sym_until] = ACTIONS(3265), + [anon_sym_repeat] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_unless] = ACTIONS(3265), + [anon_sym_always] = ACTIONS(3265), + [anon_sym_thereis] = ACTIONS(3265), + [anon_sym_never] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_finally] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_initially] = ACTIONS(3265), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4125), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [266] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2165), + [sym_num_lit] = STATE(2165), + [sym_kwd_lit] = STATE(2165), + [sym_str_lit] = STATE(2165), + [sym_char_lit] = STATE(2165), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2165), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2165), + [sym_set_lit] = STATE(2165), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2165), + [sym_splicing_read_cond_lit] = STATE(2165), + [sym_var_quoting_lit] = STATE(2165), + [sym_quoting_lit] = STATE(2165), + [sym_syn_quoting_lit] = STATE(2165), + [sym_unquote_splicing_lit] = STATE(2165), + [sym_unquoting_lit] = STATE(2165), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2165), + [sym_package_lit] = STATE(2165), + [sym_include_reader_macro] = STATE(2165), + [sym_complex_num_lit] = STATE(2165), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3973), + [sym_comment] = ACTIONS(3973), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4127), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4127), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4127), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4129), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [267] = { + [sym__gap] = STATE(995), + [sym_dis_expr] = STATE(995), + [sym__form] = STATE(2171), + [sym_num_lit] = STATE(2171), + [sym_kwd_lit] = STATE(2171), + [sym_str_lit] = STATE(2171), + [sym_char_lit] = STATE(2171), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2171), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2171), + [sym_set_lit] = STATE(2171), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2171), + [sym_splicing_read_cond_lit] = STATE(2171), + [sym_var_quoting_lit] = STATE(2171), + [sym_quoting_lit] = STATE(2171), + [sym_syn_quoting_lit] = STATE(2171), + [sym_unquote_splicing_lit] = STATE(2171), + [sym_unquoting_lit] = STATE(2171), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2171), + [sym_package_lit] = STATE(2171), + [sym_include_reader_macro] = STATE(2171), + [sym_complex_num_lit] = STATE(2171), + [aux_sym_dis_expr_repeat1] = STATE(995), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(3901), + [sym_comment] = ACTIONS(3901), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4131), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4131), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4131), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4133), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [268] = { + [sym__gap] = STATE(173), + [sym_dis_expr] = STATE(173), + [sym__form] = STATE(2168), + [sym_num_lit] = STATE(2168), + [sym_kwd_lit] = STATE(2168), + [sym_str_lit] = STATE(2168), + [sym_char_lit] = STATE(2168), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2168), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2168), + [sym_set_lit] = STATE(2168), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2168), + [sym_splicing_read_cond_lit] = STATE(2168), + [sym_var_quoting_lit] = STATE(2168), + [sym_quoting_lit] = STATE(2168), + [sym_syn_quoting_lit] = STATE(2168), + [sym_unquote_splicing_lit] = STATE(2168), + [sym_unquoting_lit] = STATE(2168), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2168), + [sym_package_lit] = STATE(2168), + [sym_include_reader_macro] = STATE(2168), + [sym_complex_num_lit] = STATE(2168), + [aux_sym_dis_expr_repeat1] = STATE(173), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4135), + [sym_comment] = ACTIONS(4135), + [anon_sym_POUND_] = ACTIONS(3947), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4138), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3952), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4138), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_POUND_CARET] = ACTIONS(3958), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3964), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4138), + [anon_sym_cl] = ACTIONS(3966), + [aux_sym_accumulation_verb_token1] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_and] = ACTIONS(3969), + [anon_sym_as] = ACTIONS(3969), + [anon_sym_with] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_until] = ACTIONS(3969), + [anon_sym_repeat] = ACTIONS(3969), + [anon_sym_when] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_unless] = ACTIONS(3969), + [anon_sym_always] = ACTIONS(3969), + [anon_sym_thereis] = ACTIONS(3969), + [anon_sym_never] = ACTIONS(3969), + [anon_sym_else] = ACTIONS(3969), + [anon_sym_finally] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_initially] = ACTIONS(3969), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4140), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [269] = { + [sym__gap] = STATE(174), + [sym_dis_expr] = STATE(174), + [sym__form] = STATE(2170), + [sym_num_lit] = STATE(2170), + [sym_kwd_lit] = STATE(2170), + [sym_str_lit] = STATE(2170), + [sym_char_lit] = STATE(2170), + [sym_sym_lit] = STATE(2497), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2170), + [sym__bare_list_lit] = STATE(2648), + [sym_vec_lit] = STATE(2170), + [sym_set_lit] = STATE(2170), + [sym__bare_set_lit] = STATE(2625), + [sym_read_cond_lit] = STATE(2170), + [sym_splicing_read_cond_lit] = STATE(2170), + [sym_var_quoting_lit] = STATE(2170), + [sym_quoting_lit] = STATE(2170), + [sym_syn_quoting_lit] = STATE(2170), + [sym_unquote_splicing_lit] = STATE(2170), + [sym_unquoting_lit] = STATE(2170), + [sym_defun] = STATE(2648), + [sym_loop_macro] = STATE(2648), + [sym_path_lit] = STATE(2170), + [sym_package_lit] = STATE(2170), + [sym_include_reader_macro] = STATE(2170), + [sym_complex_num_lit] = STATE(2170), + [aux_sym_dis_expr_repeat1] = STATE(174), + [aux_sym_list_lit_repeat1] = STATE(2834), + [sym__ws] = ACTIONS(4142), + [sym_comment] = ACTIONS(4142), + [anon_sym_POUND_] = ACTIONS(3904), + [anon_sym_POUND] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(4145), + [aux_sym_num_lit_token1] = ACTIONS(71), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [sym_nil_lit] = ACTIONS(4145), + [aux_sym_sym_lit_token1] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(3912), + [anon_sym_POUND_CARET] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3918), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_POUND0A] = ACTIONS(98), + [anon_sym_POUND0a] = ACTIONS(98), + [anon_sym_POUND_QMARK] = ACTIONS(100), + [anon_sym_POUND_QMARK_AT] = ACTIONS(102), + [anon_sym_POUND_SQUOTE] = ACTIONS(104), + [anon_sym_SQUOTE] = ACTIONS(106), + [anon_sym_BQUOTE] = ACTIONS(108), + [anon_sym_COMMA_AT] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(112), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4145), + [anon_sym_cl] = ACTIONS(3923), + [aux_sym_accumulation_verb_token1] = ACTIONS(3926), + [anon_sym_for] = ACTIONS(3926), + [anon_sym_and] = ACTIONS(3926), + [anon_sym_as] = ACTIONS(3926), + [anon_sym_with] = ACTIONS(3926), + [anon_sym_do] = ACTIONS(3926), + [anon_sym_while] = ACTIONS(3926), + [anon_sym_until] = ACTIONS(3926), + [anon_sym_repeat] = ACTIONS(3926), + [anon_sym_when] = ACTIONS(3926), + [anon_sym_if] = ACTIONS(3926), + [anon_sym_unless] = ACTIONS(3926), + [anon_sym_always] = ACTIONS(3926), + [anon_sym_thereis] = ACTIONS(3926), + [anon_sym_never] = ACTIONS(3926), + [anon_sym_else] = ACTIONS(3926), + [anon_sym_finally] = ACTIONS(3926), + [anon_sym_return] = ACTIONS(3926), + [anon_sym_initially] = ACTIONS(3926), + [anon_sym_POUNDP] = ACTIONS(123), + [anon_sym_POUNDp] = ACTIONS(123), + [sym_self_referential_reader_macro] = ACTIONS(4147), + [anon_sym_POUND_PLUS] = ACTIONS(127), + [anon_sym_POUND_DASH] = ACTIONS(127), + [anon_sym_POUNDC] = ACTIONS(129), + [anon_sym_POUNDc] = ACTIONS(129), + }, + [270] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2722), + [sym_num_lit] = STATE(2722), + [sym_kwd_lit] = STATE(2722), + [sym_str_lit] = STATE(2722), + [sym_char_lit] = STATE(2722), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2722), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2722), + [sym_set_lit] = STATE(2722), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2722), + [sym_splicing_read_cond_lit] = STATE(2722), + [sym_var_quoting_lit] = STATE(2722), + [sym_quoting_lit] = STATE(2722), + [sym_syn_quoting_lit] = STATE(2722), + [sym_unquote_splicing_lit] = STATE(2722), + [sym_unquoting_lit] = STATE(2722), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2722), + [sym_package_lit] = STATE(2722), + [sym_include_reader_macro] = STATE(2722), + [sym_complex_num_lit] = STATE(2722), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4151), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4151), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4151), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4153), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [271] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [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(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2695), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2695), + [sym_set_lit] = STATE(2695), + [sym__bare_set_lit] = STATE(1893), + [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(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [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(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4155), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4155), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4155), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4157), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [272] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2743), + [sym_num_lit] = STATE(2743), + [sym_kwd_lit] = STATE(2743), + [sym_str_lit] = STATE(2743), + [sym_char_lit] = STATE(2743), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2743), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2743), + [sym_set_lit] = STATE(2743), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2743), + [sym_splicing_read_cond_lit] = STATE(2743), + [sym_var_quoting_lit] = STATE(2743), + [sym_quoting_lit] = STATE(2743), + [sym_syn_quoting_lit] = STATE(2743), + [sym_unquote_splicing_lit] = STATE(2743), + [sym_unquoting_lit] = STATE(2743), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2743), + [sym_package_lit] = STATE(2743), + [sym_include_reader_macro] = STATE(2743), + [sym_complex_num_lit] = STATE(2743), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4159), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4159), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4159), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4161), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [273] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2724), + [sym_num_lit] = STATE(2724), + [sym_kwd_lit] = STATE(2724), + [sym_str_lit] = STATE(2724), + [sym_char_lit] = STATE(2724), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2724), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2724), + [sym_set_lit] = STATE(2724), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2724), + [sym_splicing_read_cond_lit] = STATE(2724), + [sym_var_quoting_lit] = STATE(2724), + [sym_quoting_lit] = STATE(2724), + [sym_syn_quoting_lit] = STATE(2724), + [sym_unquote_splicing_lit] = STATE(2724), + [sym_unquoting_lit] = STATE(2724), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2724), + [sym_package_lit] = STATE(2724), + [sym_include_reader_macro] = STATE(2724), + [sym_complex_num_lit] = STATE(2724), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4163), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4163), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4163), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4165), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [274] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2683), + [sym_num_lit] = STATE(2683), + [sym_kwd_lit] = STATE(2683), + [sym_str_lit] = STATE(2683), + [sym_char_lit] = STATE(2683), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2683), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2683), + [sym_set_lit] = STATE(2683), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2683), + [sym_splicing_read_cond_lit] = STATE(2683), + [sym_var_quoting_lit] = STATE(2683), + [sym_quoting_lit] = STATE(2683), + [sym_syn_quoting_lit] = STATE(2683), + [sym_unquote_splicing_lit] = STATE(2683), + [sym_unquoting_lit] = STATE(2683), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2683), + [sym_package_lit] = STATE(2683), + [sym_include_reader_macro] = STATE(2683), + [sym_complex_num_lit] = STATE(2683), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4167), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4167), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4167), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4169), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [275] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2689), + [sym_num_lit] = STATE(2689), + [sym_kwd_lit] = STATE(2689), + [sym_str_lit] = STATE(2689), + [sym_char_lit] = STATE(2689), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2689), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2689), + [sym_set_lit] = STATE(2689), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2689), + [sym_splicing_read_cond_lit] = STATE(2689), + [sym_var_quoting_lit] = STATE(2689), + [sym_quoting_lit] = STATE(2689), + [sym_syn_quoting_lit] = STATE(2689), + [sym_unquote_splicing_lit] = STATE(2689), + [sym_unquoting_lit] = STATE(2689), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2689), + [sym_package_lit] = STATE(2689), + [sym_include_reader_macro] = STATE(2689), + [sym_complex_num_lit] = STATE(2689), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4171), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4171), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4171), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4173), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [276] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2680), + [sym_num_lit] = STATE(2680), + [sym_kwd_lit] = STATE(2680), + [sym_str_lit] = STATE(2680), + [sym_char_lit] = STATE(2680), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2680), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2680), + [sym_set_lit] = STATE(2680), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2680), + [sym_splicing_read_cond_lit] = STATE(2680), + [sym_var_quoting_lit] = STATE(2680), + [sym_quoting_lit] = STATE(2680), + [sym_syn_quoting_lit] = STATE(2680), + [sym_unquote_splicing_lit] = STATE(2680), + [sym_unquoting_lit] = STATE(2680), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2680), + [sym_package_lit] = STATE(2680), + [sym_include_reader_macro] = STATE(2680), + [sym_complex_num_lit] = STATE(2680), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4175), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4175), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4175), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4177), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [277] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [sym__form] = STATE(2742), + [sym_num_lit] = STATE(2742), + [sym_kwd_lit] = STATE(2742), + [sym_str_lit] = STATE(2742), + [sym_char_lit] = STATE(2742), + [sym_sym_lit] = STATE(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2742), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2742), + [sym_set_lit] = STATE(2742), + [sym__bare_set_lit] = STATE(1893), + [sym_read_cond_lit] = STATE(2742), + [sym_splicing_read_cond_lit] = STATE(2742), + [sym_var_quoting_lit] = STATE(2742), + [sym_quoting_lit] = STATE(2742), + [sym_syn_quoting_lit] = STATE(2742), + [sym_unquote_splicing_lit] = STATE(2742), + [sym_unquoting_lit] = STATE(2742), + [sym_defun] = STATE(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [sym_path_lit] = STATE(2742), + [sym_package_lit] = STATE(2742), + [sym_include_reader_macro] = STATE(2742), + [sym_complex_num_lit] = STATE(2742), + [aux_sym_dis_expr_repeat1] = STATE(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4179), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4179), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4179), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4181), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [278] = { + [sym__gap] = STATE(1147), + [sym_dis_expr] = STATE(1147), + [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(2762), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(2682), + [sym__bare_list_lit] = STATE(1892), + [sym_vec_lit] = STATE(2682), + [sym_set_lit] = STATE(2682), + [sym__bare_set_lit] = STATE(1893), + [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(1892), + [sym_for_clause_word] = STATE(432), + [sym_loop_macro] = STATE(1892), + [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(1147), + [aux_sym_list_lit_repeat1] = STATE(2821), + [sym__ws] = ACTIONS(4149), + [sym_comment] = ACTIONS(4149), + [anon_sym_POUND_] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(4183), + [aux_sym_num_lit_token1] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_nil_lit] = ACTIONS(4183), + [aux_sym_sym_lit_token1] = ACTIONS(1632), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_POUND0A] = ACTIONS(1636), + [anon_sym_POUND0a] = ACTIONS(1636), + [anon_sym_POUND_QMARK] = ACTIONS(1638), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1640), + [anon_sym_POUND_SQUOTE] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_COMMA_AT] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1650), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4183), + [anon_sym_cl] = ACTIONS(1652), + [anon_sym_in] = ACTIONS(1654), + [anon_sym_across] = ACTIONS(1654), + [anon_sym_being] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1654), + [aux_sym_for_clause_word_token1] = ACTIONS(1656), + [anon_sym_below] = ACTIONS(1654), + [anon_sym_above] = ACTIONS(1654), + [anon_sym_from] = ACTIONS(1654), + [anon_sym_to] = ACTIONS(1654), + [anon_sym_upto] = ACTIONS(1654), + [anon_sym_upfrom] = ACTIONS(1654), + [anon_sym_downto] = ACTIONS(1654), + [anon_sym_downfrom] = ACTIONS(1654), + [anon_sym_on] = ACTIONS(1654), + [anon_sym_by] = ACTIONS(1654), + [anon_sym_then] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_POUNDP] = ACTIONS(1658), + [anon_sym_POUNDp] = ACTIONS(1658), + [sym_self_referential_reader_macro] = ACTIONS(4185), + [anon_sym_POUND_PLUS] = ACTIONS(1662), + [anon_sym_POUND_DASH] = ACTIONS(1662), + [anon_sym_POUNDC] = ACTIONS(1664), + [anon_sym_POUNDc] = ACTIONS(1664), + }, + [279] = { + [sym__gap] = STATE(1616), + [sym_dis_expr] = STATE(1616), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(303), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(305), + [sym__ws] = ACTIONS(4187), + [sym_comment] = ACTIONS(4187), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(987), + [anon_sym_RPAREN] = ACTIONS(4193), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13409,63 +34514,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4195), + [anon_sym_loop] = ACTIONS(4197), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [46] = { - [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), + [280] = { + [sym__gap] = STATE(1622), + [sym_dis_expr] = STATE(1622), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(394), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(395), + [sym__ws] = ACTIONS(4205), + [sym_comment] = ACTIONS(4205), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(991), + [anon_sym_RPAREN] = ACTIONS(4207), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13476,63 +34589,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4209), + [anon_sym_loop] = ACTIONS(4211), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [47] = { - [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), + [281] = { + [sym__gap] = STATE(1615), + [sym_dis_expr] = STATE(1615), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(388), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(385), + [sym__ws] = ACTIONS(4213), + [sym_comment] = ACTIONS(4213), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(4215), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13543,63 +34664,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4217), + [anon_sym_loop] = ACTIONS(4219), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [48] = { - [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), + [282] = { + [sym__gap] = STATE(1613), + [sym_dis_expr] = STATE(1613), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(392), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(391), + [sym__ws] = ACTIONS(4221), + [sym_comment] = ACTIONS(4221), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(4223), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13610,63 +34739,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4225), + [anon_sym_loop] = ACTIONS(4227), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [49] = { - [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), + [283] = { + [sym__gap] = STATE(1621), + [sym_dis_expr] = STATE(1621), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(377), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(378), + [sym__ws] = ACTIONS(4229), + [sym_comment] = ACTIONS(4229), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(999), + [anon_sym_RPAREN] = ACTIONS(4231), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13677,63 +34814,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4233), + [anon_sym_loop] = ACTIONS(4235), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [50] = { - [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), + [284] = { + [sym__gap] = STATE(1620), + [sym_dis_expr] = STATE(1620), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(361), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(362), + [sym__ws] = ACTIONS(4237), + [sym_comment] = ACTIONS(4237), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(4239), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13744,63 +34889,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4241), + [anon_sym_loop] = ACTIONS(4243), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [51] = { - [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), + [285] = { + [sym__gap] = STATE(1619), + [sym_dis_expr] = STATE(1619), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(291), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(348), + [sym__ws] = ACTIONS(4245), + [sym_comment] = ACTIONS(4245), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1005), + [anon_sym_RPAREN] = ACTIONS(4247), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13811,63 +34964,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4249), + [anon_sym_loop] = ACTIONS(4251), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [52] = { - [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), + [286] = { + [sym__gap] = STATE(1614), + [sym_dis_expr] = STATE(1614), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(295), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(294), + [sym__ws] = ACTIONS(4253), + [sym_comment] = ACTIONS(4253), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1009), + [anon_sym_RPAREN] = ACTIONS(4255), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13878,63 +35039,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4257), + [anon_sym_loop] = ACTIONS(4259), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [53] = { - [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), + [287] = { + [sym__gap] = STATE(1618), + [sym_dis_expr] = STATE(1618), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(330), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(331), + [sym__ws] = ACTIONS(4261), + [sym_comment] = ACTIONS(4261), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1013), + [anon_sym_RPAREN] = ACTIONS(4263), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -13945,63 +35114,71 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4265), + [anon_sym_loop] = ACTIONS(4267), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [54] = { - [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), + [288] = { + [sym__gap] = STATE(1617), + [sym_dis_expr] = STATE(1617), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_defun_keyword] = STATE(662), + [sym_defun_header] = STATE(318), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(319), + [sym__ws] = ACTIONS(4269), + [sym_comment] = ACTIONS(4269), + [anon_sym_POUND_] = ACTIONS(4189), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(4271), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14012,63 +35189,137 @@ 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), - [anon_sym_cl] = ACTIONS(49), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(4273), + [anon_sym_loop] = ACTIONS(4275), + [anon_sym_defun] = ACTIONS(4199), + [anon_sym_defmacro] = ACTIONS(4199), + [anon_sym_defgeneric] = ACTIONS(4199), + [anon_sym_defmethod] = ACTIONS(4199), + [anon_sym_lambda] = ACTIONS(4201), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [sym_self_referential_reader_macro] = ACTIONS(392), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [55] = { - [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), + [289] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4277), + [sym_comment] = ACTIONS(4277), + [anon_sym_POUND_] = ACTIONS(4280), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_DOT] = ACTIONS(4286), + [aux_sym_num_lit_token1] = ACTIONS(4289), + [anon_sym_COLON] = ACTIONS(4292), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4298), + [sym_nil_lit] = ACTIONS(4286), + [aux_sym_sym_lit_token1] = ACTIONS(4301), + [anon_sym_CARET] = ACTIONS(4304), + [anon_sym_POUND_CARET] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4310), + [anon_sym_RPAREN] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4313), + [anon_sym_POUND0A] = ACTIONS(4315), + [anon_sym_POUND0a] = ACTIONS(4315), + [anon_sym_POUND_QMARK] = ACTIONS(4318), + [anon_sym_POUND_QMARK_AT] = ACTIONS(4321), + [anon_sym_POUND_SQUOTE] = ACTIONS(4324), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_BQUOTE] = ACTIONS(4330), + [anon_sym_COMMA_AT] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4336), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4286), + [anon_sym_cl] = ACTIONS(4339), + [anon_sym_POUNDP] = ACTIONS(4342), + [anon_sym_POUNDp] = ACTIONS(4342), + [sym_self_referential_reader_macro] = ACTIONS(4345), + [anon_sym_POUND_PLUS] = ACTIONS(4348), + [anon_sym_POUND_DASH] = ACTIONS(4348), + [anon_sym_POUNDC] = ACTIONS(4351), + [anon_sym_POUNDc] = ACTIONS(4351), + }, + [290] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(4356), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14079,63 +35330,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [56] = { - [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), + [291] = { + [sym__gap] = STATE(352), + [sym_dis_expr] = STATE(352), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(354), + [sym__ws] = ACTIONS(4358), + [sym_comment] = ACTIONS(4358), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1023), + [anon_sym_RPAREN] = ACTIONS(4360), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14146,63 +35397,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [57] = { - [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), + [292] = { + [sym__gap] = STATE(300), + [sym_dis_expr] = STATE(300), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(300), + [sym__ws] = ACTIONS(4362), + [sym_comment] = ACTIONS(4362), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(4364), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14213,63 +35464,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [58] = { - [sym__gap] = STATE(61), - [sym_dis_expr] = STATE(61), - [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), + [293] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1029), + [anon_sym_RPAREN] = ACTIONS(4366), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14280,63 +35531,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [59] = { - [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), + [294] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1029), + [anon_sym_RPAREN] = ACTIONS(4368), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14347,63 +35598,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [60] = { - [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), + [295] = { + [sym__gap] = STATE(372), + [sym_dis_expr] = STATE(372), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(373), + [sym__ws] = ACTIONS(4370), + [sym_comment] = ACTIONS(4370), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1033), + [anon_sym_RPAREN] = ACTIONS(4372), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14414,63 +35665,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [61] = { - [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), + [296] = { + [sym__gap] = STATE(345), + [sym_dis_expr] = STATE(345), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(345), + [sym__ws] = ACTIONS(4374), + [sym_comment] = ACTIONS(4374), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1037), + [anon_sym_RBRACE] = ACTIONS(4376), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14481,63 +35732,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [62] = { - [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), + [297] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1039), + [anon_sym_RPAREN] = ACTIONS(4378), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14548,63 +35799,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [298] = { + [sym__gap] = STATE(349), + [sym_dis_expr] = STATE(349), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(349), + [sym__ws] = ACTIONS(4380), + [sym_comment] = ACTIONS(4380), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1041), + [anon_sym_RPAREN] = ACTIONS(4382), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14615,130 +35866,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [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(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), + [299] = { + [sym__gap] = STATE(301), + [sym_dis_expr] = STATE(301), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(301), + [sym__ws] = ACTIONS(4384), + [sym_comment] = ACTIONS(4384), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1051), + [anon_sym_RPAREN] = ACTIONS(4386), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14749,63 +35933,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [66] = { - [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), + [300] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1055), + [anon_sym_RPAREN] = ACTIONS(4388), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14816,63 +36000,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [67] = { - [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), + [301] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1057), + [anon_sym_RPAREN] = ACTIONS(4390), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14883,63 +36067,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [68] = { - [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), + [302] = { + [sym__gap] = STATE(308), + [sym_dis_expr] = STATE(308), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(308), + [sym__ws] = ACTIONS(4392), + [sym_comment] = ACTIONS(4392), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(4394), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -14950,63 +36134,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [69] = { - [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), + [303] = { + [sym__gap] = STATE(310), + [sym_dis_expr] = STATE(310), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(311), + [sym__ws] = ACTIONS(4396), + [sym_comment] = ACTIONS(4396), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1065), + [anon_sym_RPAREN] = ACTIONS(4398), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15017,63 +36201,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [70] = { - [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), + [304] = { + [sym__gap] = STATE(363), + [sym_dis_expr] = STATE(363), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(363), + [sym__ws] = ACTIONS(4400), + [sym_comment] = ACTIONS(4400), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1067), + [anon_sym_RBRACE] = ACTIONS(4402), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15084,63 +36268,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [71] = { - [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), + [305] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(4404), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15151,63 +36335,197 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [72] = { - [sym__gap] = STATE(75), - [sym_dis_expr] = STATE(75), - [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), + [306] = { + [sym__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(37), + [sym__ws] = ACTIONS(4406), + [sym_comment] = ACTIONS(4406), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(4412), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), + }, + [307] = { + [sym__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(32), + [sym__ws] = ACTIONS(4406), + [sym_comment] = ACTIONS(4406), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(4412), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), + }, + [308] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1073), + [anon_sym_RBRACE] = ACTIONS(4414), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15218,63 +36536,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [73] = { - [sym__gap] = STATE(77), - [sym_dis_expr] = STATE(77), - [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), + [309] = { + [sym__gap] = STATE(312), + [sym_dis_expr] = STATE(312), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(313), + [sym__ws] = ACTIONS(4416), + [sym_comment] = ACTIONS(4416), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1073), + [anon_sym_RPAREN] = ACTIONS(4418), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15285,63 +36603,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [74] = { - [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), + [310] = { + [sym__gap] = STATE(314), + [sym_dis_expr] = STATE(314), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(314), + [sym__ws] = ACTIONS(4420), + [sym_comment] = ACTIONS(4420), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1077), + [anon_sym_RPAREN] = ACTIONS(4418), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15352,63 +36670,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [75] = { - [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), + [311] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1081), + [anon_sym_RPAREN] = ACTIONS(4422), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15419,63 +36737,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [76] = { - [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), + [312] = { + [sym__gap] = STATE(316), + [sym_dis_expr] = STATE(316), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(316), + [sym__ws] = ACTIONS(4424), + [sym_comment] = ACTIONS(4424), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1083), + [anon_sym_RPAREN] = ACTIONS(4426), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15486,63 +36804,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [77] = { - [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), + [313] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1085), + [anon_sym_RPAREN] = ACTIONS(4428), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15553,63 +36871,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [78] = { - [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), + [314] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1087), + [anon_sym_RPAREN] = ACTIONS(4430), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15620,63 +36938,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [79] = { - [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), + [315] = { + [sym__gap] = STATE(908), + [sym_dis_expr] = STATE(908), + [sym__form] = STATE(994), + [sym_num_lit] = STATE(994), + [sym_kwd_lit] = STATE(994), + [sym_str_lit] = STATE(994), + [sym_char_lit] = STATE(994), + [sym_sym_lit] = STATE(1189), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(994), + [sym__bare_list_lit] = STATE(1190), + [sym_vec_lit] = STATE(994), + [sym_set_lit] = STATE(994), + [sym__bare_set_lit] = STATE(1191), + [sym_read_cond_lit] = STATE(994), + [sym_splicing_read_cond_lit] = STATE(994), + [sym_var_quoting_lit] = STATE(994), + [sym_quoting_lit] = STATE(994), + [sym_syn_quoting_lit] = STATE(994), + [sym_unquote_splicing_lit] = STATE(994), + [sym_unquoting_lit] = STATE(994), + [sym_defun] = STATE(1190), + [sym_loop_macro] = STATE(1190), + [sym_path_lit] = STATE(994), + [sym_package_lit] = STATE(994), + [sym_include_reader_macro] = STATE(994), + [sym_complex_num_lit] = STATE(994), + [aux_sym_dis_expr_repeat1] = STATE(908), + [aux_sym_list_lit_repeat1] = STATE(2827), + [aux_sym_do_clause_repeat1] = STATE(21), + [sym__ws] = ACTIONS(4406), + [sym_comment] = ACTIONS(4406), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(726), + [aux_sym_num_lit_token1] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(4408), + [anon_sym_COLON_COLON] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(734), + [sym_nil_lit] = ACTIONS(726), + [aux_sym_sym_lit_token1] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(4410), + [anon_sym_POUND0A] = ACTIONS(738), + [anon_sym_POUND0a] = ACTIONS(738), + [anon_sym_POUND_QMARK] = ACTIONS(740), + [anon_sym_POUND_QMARK_AT] = ACTIONS(742), + [anon_sym_POUND_SQUOTE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(746), + [anon_sym_BQUOTE] = ACTIONS(748), + [anon_sym_COMMA_AT] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(752), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(726), + [anon_sym_cl] = ACTIONS(4412), + [anon_sym_POUNDP] = ACTIONS(754), + [anon_sym_POUNDp] = ACTIONS(754), + [sym_self_referential_reader_macro] = ACTIONS(756), + [anon_sym_POUND_PLUS] = ACTIONS(758), + [anon_sym_POUND_DASH] = ACTIONS(758), + [anon_sym_POUNDC] = ACTIONS(760), + [anon_sym_POUNDc] = ACTIONS(760), + }, + [316] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(4432), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15687,130 +37072,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [80] = { - [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(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(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(1095), - [anon_sym_cl] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_POUNDP] = ACTIONS(762), - [anon_sym_POUNDp] = ACTIONS(762), - [sym_self_referential_reader_macro] = ACTIONS(1101), - [anon_sym_POUND_PLUS] = ACTIONS(766), - [anon_sym_POUND_DASH] = ACTIONS(766), - [anon_sym_POUNDC] = ACTIONS(768), - [anon_sym_POUNDc] = ACTIONS(768), - }, - [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), + [317] = { + [sym__gap] = STATE(320), + [sym_dis_expr] = STATE(320), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(320), + [sym__ws] = ACTIONS(4434), + [sym_comment] = ACTIONS(4434), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1103), + [anon_sym_RBRACE] = ACTIONS(4436), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15821,63 +37139,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [318] = { + [sym__gap] = STATE(323), + [sym_dis_expr] = STATE(323), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(324), + [sym__ws] = ACTIONS(4438), + [sym_comment] = ACTIONS(4438), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1105), + [anon_sym_RPAREN] = ACTIONS(4440), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15888,63 +37206,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [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), + [319] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RPAREN] = ACTIONS(4442), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -15955,63 +37273,63 @@ 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(4191), [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(4203), [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(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), + [320] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1111), + [anon_sym_RBRACE] = ACTIONS(4444), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16022,63 +37340,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [85] = { - [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), + [321] = { + [sym__gap] = STATE(375), + [sym_dis_expr] = STATE(375), + [sym__form] = STATE(1991), + [sym_num_lit] = STATE(1991), + [sym_kwd_lit] = STATE(1991), + [sym_str_lit] = STATE(1991), + [sym_char_lit] = STATE(1991), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1991), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1991), + [sym_set_lit] = STATE(1991), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1991), + [sym_splicing_read_cond_lit] = STATE(1991), + [sym_var_quoting_lit] = STATE(1991), + [sym_quoting_lit] = STATE(1991), + [sym_syn_quoting_lit] = STATE(1991), + [sym_unquote_splicing_lit] = STATE(1991), + [sym_unquoting_lit] = STATE(1991), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1991), + [sym_package_lit] = STATE(1991), + [sym_include_reader_macro] = STATE(1991), + [sym_complex_num_lit] = STATE(1991), + [aux_sym_source_repeat1] = STATE(375), + [aux_sym_list_lit_repeat1] = STATE(2808), + [ts_builtin_sym_end] = ACTIONS(4446), + [sym__ws] = ACTIONS(4448), + [sym_comment] = ACTIONS(4448), [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(1115), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16089,63 +37407,63 @@ 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), }, - [86] = { - [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), + [322] = { + [sym__gap] = STATE(325), + [sym_dis_expr] = STATE(325), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(326), + [sym__ws] = ACTIONS(4450), + [sym_comment] = ACTIONS(4450), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1117), + [anon_sym_RPAREN] = ACTIONS(4452), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16156,63 +37474,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [87] = { - [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), + [323] = { + [sym__gap] = STATE(327), + [sym_dis_expr] = STATE(327), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(327), + [sym__ws] = ACTIONS(4454), + [sym_comment] = ACTIONS(4454), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1119), + [anon_sym_RPAREN] = ACTIONS(4452), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16223,63 +37541,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [88] = { - [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), + [324] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1121), + [anon_sym_RPAREN] = ACTIONS(4456), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16290,63 +37608,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [89] = { - [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), + [325] = { + [sym__gap] = STATE(328), + [sym_dis_expr] = STATE(328), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(328), + [sym__ws] = ACTIONS(4458), + [sym_comment] = ACTIONS(4458), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RPAREN] = ACTIONS(4460), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16357,130 +37675,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [90] = { - [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(1127), - [sym__ws] = ACTIONS(1129), - [sym_comment] = ACTIONS(1129), - [anon_sym_POUND_] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1138), - [aux_sym_num_lit_token1] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_nil_lit] = ACTIONS(1138), - [aux_sym_sym_lit_token1] = ACTIONS(1153), - [anon_sym_CARET] = ACTIONS(1156), - [anon_sym_POUND_CARET] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_POUND0A] = ACTIONS(1165), - [anon_sym_POUND0a] = ACTIONS(1165), - [anon_sym_POUND_QMARK] = ACTIONS(1168), - [anon_sym_POUND_QMARK_AT] = ACTIONS(1171), - [anon_sym_POUND_SQUOTE] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_COMMA_AT] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1186), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(1138), - [anon_sym_cl] = ACTIONS(1189), - [anon_sym_POUNDP] = ACTIONS(1192), - [anon_sym_POUNDp] = ACTIONS(1192), - [sym_self_referential_reader_macro] = ACTIONS(1195), - [anon_sym_POUND_PLUS] = ACTIONS(1198), - [anon_sym_POUND_DASH] = ACTIONS(1198), - [anon_sym_POUNDC] = ACTIONS(1201), - [anon_sym_POUNDc] = ACTIONS(1201), - }, - [91] = { - [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), + [326] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RPAREN] = ACTIONS(4462), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16491,63 +37742,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [92] = { - [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), + [327] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1206), + [anon_sym_RPAREN] = ACTIONS(4464), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16558,63 +37809,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [93] = { - [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), + [328] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1208), + [anon_sym_RPAREN] = ACTIONS(4466), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16625,63 +37876,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [94] = { - [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), + [329] = { + [sym__gap] = STATE(332), + [sym_dis_expr] = STATE(332), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(332), + [sym__ws] = ACTIONS(4468), + [sym_comment] = ACTIONS(4468), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1212), + [anon_sym_RBRACE] = ACTIONS(4470), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16692,63 +37943,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [95] = { - [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), + [330] = { + [sym__gap] = STATE(334), + [sym_dis_expr] = STATE(334), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(350), + [sym__ws] = ACTIONS(4472), + [sym_comment] = ACTIONS(4472), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1214), + [anon_sym_RPAREN] = ACTIONS(4474), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16759,63 +38010,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [96] = { - [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), + [331] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1216), + [anon_sym_RPAREN] = ACTIONS(4476), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16826,63 +38077,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [97] = { - [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), + [332] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1218), + [anon_sym_RBRACE] = ACTIONS(4478), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16893,63 +38144,63 @@ 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(4191), [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(4203), [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(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), + [333] = { + [sym__gap] = STATE(340), + [sym_dis_expr] = STATE(340), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(341), + [sym__ws] = ACTIONS(4480), + [sym_comment] = ACTIONS(4480), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(4482), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -16960,63 +38211,63 @@ 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(4191), [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(4203), [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(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), + [334] = { + [sym__gap] = STATE(343), + [sym_dis_expr] = STATE(343), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(343), + [sym__ws] = ACTIONS(4484), + [sym_comment] = ACTIONS(4484), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1224), + [anon_sym_RPAREN] = ACTIONS(4482), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17027,63 +38278,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [100] = { - [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), + [335] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1228), + [anon_sym_RPAREN] = ACTIONS(4486), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17094,130 +38345,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [101] = { - [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), + [336] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1240), + [anon_sym_RBRACE] = ACTIONS(4488), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17228,63 +38412,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [337] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1242), + [anon_sym_RPAREN] = ACTIONS(4490), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17295,63 +38479,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [338] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1244), + [anon_sym_RPAREN] = ACTIONS(4492), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17362,63 +38546,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [105] = { - [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), + [339] = { + [sym__gap] = STATE(384), + [sym_dis_expr] = STATE(384), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(384), + [sym__ws] = ACTIONS(4494), + [sym_comment] = ACTIONS(4494), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(991), + [anon_sym_RPAREN] = ACTIONS(4496), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17429,63 +38613,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [106] = { - [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), + [340] = { + [sym__gap] = STATE(344), + [sym_dis_expr] = STATE(344), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(344), + [sym__ws] = ACTIONS(4498), + [sym_comment] = ACTIONS(4498), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1248), + [anon_sym_RPAREN] = ACTIONS(4500), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17496,130 +38680,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [107] = { - [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), + [341] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [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), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4502), + [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(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), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [342] = { + [sym__gap] = STATE(298), + [sym_dis_expr] = STATE(298), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(297), + [sym__ws] = ACTIONS(4504), + [sym_comment] = ACTIONS(4504), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1262), + [anon_sym_RPAREN] = ACTIONS(4496), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17630,63 +38814,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [343] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1266), + [anon_sym_RPAREN] = ACTIONS(4506), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17697,63 +38881,63 @@ 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(4191), [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(4203), [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(114), - [sym_dis_expr] = STATE(114), - [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(1268), - [sym_comment] = ACTIONS(1268), + [344] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1270), + [anon_sym_RPAREN] = ACTIONS(4508), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17764,63 +38948,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [111] = { - [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), + [345] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(4510), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17831,63 +39015,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [112] = { - [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), + [346] = { + [sym__gap] = STATE(336), + [sym_dis_expr] = STATE(336), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(336), + [sym__ws] = ACTIONS(4512), + [sym_comment] = ACTIONS(4512), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1270), + [anon_sym_RBRACE] = ACTIONS(4514), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17898,63 +39082,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [113] = { - [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), + [347] = { + [sym__gap] = STATE(299), + [sym_dis_expr] = STATE(299), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(290), + [sym__ws] = ACTIONS(4516), + [sym_comment] = ACTIONS(4516), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1276), + [anon_sym_RPAREN] = ACTIONS(4364), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -17965,63 +39149,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [114] = { - [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), + [348] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1280), + [anon_sym_RPAREN] = ACTIONS(4518), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18032,63 +39216,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [115] = { - [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), + [349] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1282), + [anon_sym_RPAREN] = ACTIONS(4520), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18099,63 +39283,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [116] = { - [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), + [350] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1284), + [anon_sym_RPAREN] = ACTIONS(4522), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18166,63 +39350,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [117] = { - [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), + [351] = { + [sym__gap] = STATE(355), + [sym_dis_expr] = STATE(355), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(356), + [sym__ws] = ACTIONS(4524), + [sym_comment] = ACTIONS(4524), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1286), + [anon_sym_RPAREN] = ACTIONS(4526), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18233,63 +39417,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [118] = { - [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), + [352] = { + [sym__gap] = STATE(357), + [sym_dis_expr] = STATE(357), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(357), + [sym__ws] = ACTIONS(4528), + [sym_comment] = ACTIONS(4528), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1290), + [anon_sym_RPAREN] = ACTIONS(4526), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18300,63 +39484,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [119] = { - [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), + [353] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1292), + [anon_sym_RBRACE] = ACTIONS(4530), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18367,63 +39551,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [120] = { - [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), + [354] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(4532), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18434,63 +39618,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [121] = { - [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), + [355] = { + [sym__gap] = STATE(358), + [sym_dis_expr] = STATE(358), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(358), + [sym__ws] = ACTIONS(4534), + [sym_comment] = ACTIONS(4534), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(4536), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18501,63 +39685,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [122] = { - [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), + [356] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1302), + [anon_sym_RPAREN] = ACTIONS(4538), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18568,63 +39752,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [357] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1304), + [anon_sym_RPAREN] = ACTIONS(4540), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18635,63 +39819,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [358] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1306), + [anon_sym_RPAREN] = ACTIONS(4542), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18702,63 +39886,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [359] = { + [sym__gap] = STATE(393), + [sym_dis_expr] = STATE(393), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(399), + [sym__ws] = ACTIONS(4544), + [sym_comment] = ACTIONS(4544), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1308), + [anon_sym_RPAREN] = ACTIONS(4546), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18769,197 +39953,197 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [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), + [360] = { + [sym__gap] = STATE(364), + [sym_dis_expr] = STATE(364), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(364), + [sym__ws] = ACTIONS(4548), + [sym_comment] = ACTIONS(4548), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [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), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(4550), + [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(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), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [361] = { + [sym__gap] = STATE(366), + [sym_dis_expr] = STATE(366), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(367), + [sym__ws] = ACTIONS(4552), + [sym_comment] = ACTIONS(4552), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [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), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4554), + [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(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), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [128] = { - [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), + [362] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(4556), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -18970,63 +40154,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [129] = { - [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), + [363] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1332), + [anon_sym_RBRACE] = ACTIONS(4558), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19037,63 +40221,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [130] = { - [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), + [364] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1336), + [anon_sym_RBRACE] = ACTIONS(4560), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19104,63 +40288,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [131] = { - [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), + [365] = { + [sym__gap] = STATE(368), + [sym_dis_expr] = STATE(368), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(369), + [sym__ws] = ACTIONS(4562), + [sym_comment] = ACTIONS(4562), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1336), + [anon_sym_RPAREN] = ACTIONS(4564), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19171,63 +40355,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [132] = { - [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), + [366] = { + [sym__gap] = STATE(370), + [sym_dis_expr] = STATE(370), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(370), + [sym__ws] = ACTIONS(4566), + [sym_comment] = ACTIONS(4566), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1332), + [anon_sym_RPAREN] = ACTIONS(4564), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19238,130 +40422,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [133] = { - [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), + [367] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(63), - [aux_sym_num_lit_token1] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_COLON_COLON] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_nil_lit] = ACTIONS(63), - [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(830), - [anon_sym_POUND0A] = ACTIONS(75), - [anon_sym_POUND0a] = ACTIONS(75), - [anon_sym_POUND_QMARK] = ACTIONS(77), - [anon_sym_POUND_QMARK_AT] = ACTIONS(79), - [anon_sym_POUND_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_COMMA_AT] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4568), + [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(63), - [anon_sym_cl] = ACTIONS(834), - [anon_sym_POUNDP] = ACTIONS(93), - [anon_sym_POUNDp] = ACTIONS(93), - [sym_self_referential_reader_macro] = ACTIONS(95), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), - [anon_sym_POUNDc] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [134] = { - [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), + [368] = { + [sym__gap] = STATE(371), + [sym_dis_expr] = STATE(371), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(371), + [sym__ws] = ACTIONS(4570), + [sym_comment] = ACTIONS(4570), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1344), + [anon_sym_RPAREN] = ACTIONS(4572), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19372,63 +40556,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [135] = { - [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), + [369] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1346), + [anon_sym_RPAREN] = ACTIONS(4574), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19439,63 +40623,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [136] = { - [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), + [370] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(4576), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19506,63 +40690,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [137] = { - [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), + [371] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1352), + [anon_sym_RPAREN] = ACTIONS(4578), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19573,63 +40757,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [138] = { - [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), + [372] = { + [sym__gap] = STATE(337), + [sym_dis_expr] = STATE(337), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(337), + [sym__ws] = ACTIONS(4580), + [sym_comment] = ACTIONS(4580), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1356), + [anon_sym_RPAREN] = ACTIONS(4546), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19640,130 +40824,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [139] = { - [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), + [373] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(63), - [aux_sym_num_lit_token1] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(67), - [anon_sym_COLON_COLON] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [sym_nil_lit] = ACTIONS(63), - [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(830), - [anon_sym_POUND0A] = ACTIONS(75), - [anon_sym_POUND0a] = ACTIONS(75), - [anon_sym_POUND_QMARK] = ACTIONS(77), - [anon_sym_POUND_QMARK_AT] = ACTIONS(79), - [anon_sym_POUND_SQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_COMMA_AT] = ACTIONS(87), - [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4582), + [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(63), - [anon_sym_cl] = ACTIONS(834), - [anon_sym_POUNDP] = ACTIONS(93), - [anon_sym_POUNDp] = ACTIONS(93), - [sym_self_referential_reader_macro] = ACTIONS(95), - [anon_sym_POUND_PLUS] = ACTIONS(97), - [anon_sym_POUND_DASH] = ACTIONS(97), - [anon_sym_POUNDC] = ACTIONS(99), - [anon_sym_POUNDc] = ACTIONS(99), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [140] = { - [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), + [374] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1356), + [anon_sym_RBRACE] = ACTIONS(4584), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19774,63 +40958,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [141] = { - [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), + [375] = { + [sym__gap] = STATE(375), + [sym_dis_expr] = STATE(375), + [sym__form] = STATE(1991), + [sym_num_lit] = STATE(1991), + [sym_kwd_lit] = STATE(1991), + [sym_str_lit] = STATE(1991), + [sym_char_lit] = STATE(1991), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1991), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1991), + [sym_set_lit] = STATE(1991), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1991), + [sym_splicing_read_cond_lit] = STATE(1991), + [sym_var_quoting_lit] = STATE(1991), + [sym_quoting_lit] = STATE(1991), + [sym_syn_quoting_lit] = STATE(1991), + [sym_unquote_splicing_lit] = STATE(1991), + [sym_unquoting_lit] = STATE(1991), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1991), + [sym_package_lit] = STATE(1991), + [sym_include_reader_macro] = STATE(1991), + [sym_complex_num_lit] = STATE(1991), + [aux_sym_source_repeat1] = STATE(375), + [aux_sym_list_lit_repeat1] = STATE(2808), + [ts_builtin_sym_end] = ACTIONS(4586), + [sym__ws] = ACTIONS(4588), + [sym_comment] = ACTIONS(4588), + [anon_sym_POUND_] = ACTIONS(4591), + [anon_sym_POUND] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4597), + [aux_sym_num_lit_token1] = ACTIONS(4600), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_COLON_COLON] = ACTIONS(4606), + [anon_sym_DQUOTE] = ACTIONS(4609), + [sym_nil_lit] = ACTIONS(4597), + [aux_sym_sym_lit_token1] = ACTIONS(4612), + [anon_sym_CARET] = ACTIONS(4615), + [anon_sym_POUND_CARET] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4621), + [anon_sym_POUND0A] = ACTIONS(4624), + [anon_sym_POUND0a] = ACTIONS(4624), + [anon_sym_POUND_QMARK] = ACTIONS(4627), + [anon_sym_POUND_QMARK_AT] = ACTIONS(4630), + [anon_sym_POUND_SQUOTE] = ACTIONS(4633), + [anon_sym_SQUOTE] = ACTIONS(4636), + [anon_sym_BQUOTE] = ACTIONS(4639), + [anon_sym_COMMA_AT] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4645), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(4597), + [anon_sym_cl] = ACTIONS(4648), + [anon_sym_POUNDP] = ACTIONS(4651), + [anon_sym_POUNDp] = ACTIONS(4651), + [sym_self_referential_reader_macro] = ACTIONS(4654), + [anon_sym_POUND_PLUS] = ACTIONS(4657), + [anon_sym_POUND_DASH] = ACTIONS(4657), + [anon_sym_POUNDC] = ACTIONS(4660), + [anon_sym_POUNDc] = ACTIONS(4660), + }, + [376] = { + [sym__gap] = STATE(379), + [sym_dis_expr] = STATE(379), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(379), + [sym__ws] = ACTIONS(4663), + [sym_comment] = ACTIONS(4663), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1360), + [anon_sym_RBRACE] = ACTIONS(4665), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19841,63 +41092,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [142] = { - [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), + [377] = { + [sym__gap] = STATE(381), + [sym_dis_expr] = STATE(381), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(382), + [sym__ws] = ACTIONS(4667), + [sym_comment] = ACTIONS(4667), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1364), + [anon_sym_RPAREN] = ACTIONS(4669), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19908,63 +41159,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [143] = { - [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), + [378] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1366), + [anon_sym_RPAREN] = ACTIONS(4671), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -19975,63 +41226,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [144] = { - [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), + [379] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1368), + [anon_sym_RBRACE] = ACTIONS(4673), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20042,63 +41293,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [145] = { - [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), + [380] = { + [sym__gap] = STATE(383), + [sym_dis_expr] = STATE(383), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(386), + [sym__ws] = ACTIONS(4675), + [sym_comment] = ACTIONS(4675), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1370), + [anon_sym_RPAREN] = ACTIONS(4677), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20109,63 +41360,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [146] = { - [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), + [381] = { + [sym__gap] = STATE(387), + [sym_dis_expr] = STATE(387), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(387), + [sym__ws] = ACTIONS(4679), + [sym_comment] = ACTIONS(4679), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1372), + [anon_sym_RPAREN] = ACTIONS(4677), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20176,63 +41427,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [147] = { - [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), + [382] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1374), + [anon_sym_RPAREN] = ACTIONS(4681), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20243,63 +41494,63 @@ 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(4191), [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(4203), [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(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), + [383] = { + [sym__gap] = STATE(389), + [sym_dis_expr] = STATE(389), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(389), + [sym__ws] = ACTIONS(4683), + [sym_comment] = ACTIONS(4683), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1378), + [anon_sym_RPAREN] = ACTIONS(4685), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20310,63 +41561,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [149] = { - [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), + [384] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1380), + [anon_sym_RPAREN] = ACTIONS(4687), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20377,130 +41628,130 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [150] = { - [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), + [385] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [aux_sym_sym_lit_token1] = ACTIONS(23), [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), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(4689), + [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(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), + [sym_fancy_literal] = ACTIONS(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [386] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1392), + [anon_sym_RPAREN] = ACTIONS(4691), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20511,63 +41762,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [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), + [387] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1396), + [anon_sym_RPAREN] = ACTIONS(4693), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20578,63 +41829,63 @@ 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(4191), [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(4203), [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(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), + [388] = { + [sym__gap] = STATE(292), + [sym_dis_expr] = STATE(292), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(293), + [sym__ws] = ACTIONS(4695), + [sym_comment] = ACTIONS(4695), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1398), + [anon_sym_RPAREN] = ACTIONS(4697), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20645,63 +41896,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [154] = { - [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), + [389] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(4699), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20712,63 +41963,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [155] = { - [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), + [390] = { + [sym__gap] = STATE(374), + [sym_dis_expr] = STATE(374), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(374), + [sym__ws] = ACTIONS(4701), + [sym_comment] = ACTIONS(4701), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1406), + [anon_sym_RBRACE] = ACTIONS(4703), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20779,63 +42030,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [156] = { - [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), + [391] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1396), + [anon_sym_RPAREN] = ACTIONS(4705), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20846,63 +42097,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [157] = { - [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), + [392] = { + [sym__gap] = STATE(339), + [sym_dis_expr] = STATE(339), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(338), + [sym__ws] = ACTIONS(4707), + [sym_comment] = ACTIONS(4707), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1410), + [anon_sym_RPAREN] = ACTIONS(4709), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20913,63 +42164,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [158] = { - [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), + [393] = { + [sym__gap] = STATE(335), + [sym_dis_expr] = STATE(335), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(335), + [sym__ws] = ACTIONS(4711), + [sym_comment] = ACTIONS(4711), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1414), + [anon_sym_RPAREN] = ACTIONS(4713), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -20980,63 +42231,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [159] = { - [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), + [394] = { + [sym__gap] = STATE(397), + [sym_dis_expr] = STATE(397), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(398), + [sym__ws] = ACTIONS(4715), + [sym_comment] = ACTIONS(4715), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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_RBRACE] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(4717), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21047,63 +42298,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [160] = { - [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), + [395] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1418), + [anon_sym_RPAREN] = ACTIONS(4719), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21114,63 +42365,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [161] = { - [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), + [396] = { + [sym__gap] = STATE(401), + [sym_dis_expr] = STATE(401), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(402), + [sym__ws] = ACTIONS(4721), + [sym_comment] = ACTIONS(4721), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1420), + [anon_sym_RPAREN] = ACTIONS(4723), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21181,63 +42432,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [162] = { - [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), + [397] = { + [sym__gap] = STATE(403), + [sym_dis_expr] = STATE(403), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(403), + [sym__ws] = ACTIONS(4725), + [sym_comment] = ACTIONS(4725), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1424), + [anon_sym_RPAREN] = ACTIONS(4723), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21248,63 +42499,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [163] = { - [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), + [398] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1424), + [anon_sym_RPAREN] = ACTIONS(4727), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21315,63 +42566,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [164] = { - [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), + [399] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1428), + [anon_sym_RPAREN] = ACTIONS(4729), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21382,63 +42633,63 @@ 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(4191), [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(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), [anon_sym_POUNDc] = ACTIONS(57), }, - [165] = { - [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), + [400] = { + [sym__gap] = STATE(353), + [sym_dis_expr] = STATE(353), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(353), + [sym__ws] = ACTIONS(4731), + [sym_comment] = ACTIONS(4731), [anon_sym_POUND_] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(4191), [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(4191), [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(1432), + [anon_sym_RBRACE] = ACTIONS(4733), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -21449,11 +42700,279 @@ 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(4191), [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(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [401] = { + [sym__gap] = STATE(404), + [sym_dis_expr] = STATE(404), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(404), + [sym__ws] = ACTIONS(4735), + [sym_comment] = ACTIONS(4735), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [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(4737), + [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(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [402] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [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(4739), + [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(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [403] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [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(4741), + [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(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [404] = { + [sym__gap] = STATE(289), + [sym_dis_expr] = STATE(289), + [sym__form] = STATE(1978), + [sym_num_lit] = STATE(1978), + [sym_kwd_lit] = STATE(1978), + [sym_str_lit] = STATE(1978), + [sym_char_lit] = STATE(1978), + [sym_sym_lit] = STATE(1878), + [sym__metadata_lit] = STATE(2901), + [sym_meta_lit] = STATE(2858), + [sym_old_meta_lit] = STATE(2859), + [sym_list_lit] = STATE(1978), + [sym__bare_list_lit] = STATE(1877), + [sym_vec_lit] = STATE(1978), + [sym_set_lit] = STATE(1978), + [sym__bare_set_lit] = STATE(1875), + [sym_read_cond_lit] = STATE(1978), + [sym_splicing_read_cond_lit] = STATE(1978), + [sym_var_quoting_lit] = STATE(1978), + [sym_quoting_lit] = STATE(1978), + [sym_syn_quoting_lit] = STATE(1978), + [sym_unquote_splicing_lit] = STATE(1978), + [sym_unquoting_lit] = STATE(1978), + [sym_defun] = STATE(1877), + [sym_loop_macro] = STATE(1877), + [sym_path_lit] = STATE(1978), + [sym_package_lit] = STATE(1978), + [sym_include_reader_macro] = STATE(1978), + [sym_complex_num_lit] = STATE(1978), + [aux_sym_list_lit_repeat1] = STATE(2808), + [aux_sym__bare_list_lit_repeat1] = STATE(289), + [sym__ws] = ACTIONS(4354), + [sym_comment] = ACTIONS(4354), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(4191), + [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(4191), + [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(4743), + [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(4191), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(4203), [anon_sym_POUND_PLUS] = ACTIONS(55), [anon_sym_POUND_DASH] = ACTIONS(55), [anon_sym_POUNDC] = ACTIONS(57), @@ -21471,78 +42990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(4783), 1, sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2172), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(4745), 2, + sym__ws, + sym_comment, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1434), 2, - sym__ws, - sym_comment, - ACTIONS(1438), 3, + ACTIONS(4749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(387), 3, + STATE(430), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 19, + STATE(1500), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21571,78 +43090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(1448), 1, + ACTIONS(4799), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1442), 2, + ACTIONS(4789), 2, sym__ws, sym_comment, - ACTIONS(1446), 3, + ACTIONS(4791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(508), 3, + STATE(808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1205), 19, + STATE(1464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21671,78 +43190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1456), 1, + ACTIONS(4827), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1454), 3, + ACTIONS(4805), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1764), 19, + STATE(2589), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21771,78 +43290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1462), 1, + ACTIONS(4833), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1458), 2, - sym__ws, - sym_comment, - ACTIONS(1460), 3, + ACTIONS(4831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(193), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(2590), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21871,78 +43390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1466), 1, + ACTIONS(4839), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4835), 2, sym__ws, sym_comment, - ACTIONS(1464), 3, + ACTIONS(4837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(455), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1749), 19, + STATE(2571), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -21971,78 +43490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(2741), 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, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1474), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(4843), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1482), 1, + sym__bare_set_lit, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1468), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1472), 3, + ACTIONS(4841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(218), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2262), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(94), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22065,84 +43584,84 @@ static const uint16_t ts_small_parse_table[] = { [810] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1478), 1, + ACTIONS(4847), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1476), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4845), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1505), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2577), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22165,84 +43684,84 @@ static const uint16_t ts_small_parse_table[] = { [945] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1484), 1, + ACTIONS(4851), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1480), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1482), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4849), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(251), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1506), 19, + STATE(2599), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22271,78 +43790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(190), 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, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1488), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(4861), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1486), 3, + ACTIONS(4853), 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, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(22), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22365,84 +43884,84 @@ static const uint16_t ts_small_parse_table[] = { [1215] = 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(606), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(4865), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1490), 3, + ACTIONS(4863), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1743), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(761), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22471,78 +43990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 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, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1498), 1, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4871), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1494), 2, + ACTIONS(4867), 2, sym__ws, sym_comment, - ACTIONS(1496), 3, + ACTIONS(4869), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(208), 3, + STATE(411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2264), 19, + STATE(2601), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22571,78 +44090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 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, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1502), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4875), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1500), 3, + ACTIONS(4873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2265), 19, + STATE(2701), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22665,84 +44184,84 @@ static const uint16_t ts_small_parse_table[] = { [1620] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1506), 1, + ACTIONS(4879), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1504), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4877), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(761), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2602), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22771,78 +44290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1510), 1, + ACTIONS(4883), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1508), 3, + ACTIONS(4881), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1742), 19, + STATE(2703), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22865,84 +44384,84 @@ static const uint16_t ts_small_parse_table[] = { [1890] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1514), 1, + ACTIONS(4889), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4885), 2, sym__ws, sym_comment, - ACTIONS(1512), 3, + ACTIONS(4887), 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, + STATE(844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1509), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -22971,78 +44490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1520), 1, + ACTIONS(4893), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1516), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1518), 3, + ACTIONS(4891), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(194), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1741), 19, + STATE(2688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23065,84 +44584,84 @@ static const uint16_t ts_small_parse_table[] = { [2160] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1524), 1, + ACTIONS(4899), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4895), 2, sym__ws, sym_comment, - ACTIONS(1522), 3, + ACTIONS(4897), 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, + STATE(407), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1510), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2623), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23171,78 +44690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1530), 1, + ACTIONS(4903), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1526), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1528), 3, + ACTIONS(4901), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(203), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1739), 19, + STATE(2719), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23265,84 +44784,84 @@ static const uint16_t ts_small_parse_table[] = { [2430] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1534), 1, + ACTIONS(4909), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4905), 2, sym__ws, sym_comment, - ACTIONS(1532), 3, + ACTIONS(4907), 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, + STATE(408), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1517), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2626), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23365,84 +44884,84 @@ static const uint16_t ts_small_parse_table[] = { [2565] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1540), 1, + ACTIONS(4915), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1536), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4911), 2, sym__ws, sym_comment, - ACTIONS(1538), 3, + ACTIONS(4913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(262), 3, + STATE(417), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1512), 19, + STATE(2633), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23465,84 +44984,84 @@ static const uint16_t ts_small_parse_table[] = { [2700] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1544), 1, + ACTIONS(4919), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1542), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4917), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(263), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23565,84 +45084,84 @@ static const uint16_t ts_small_parse_table[] = { [2835] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1550), 1, + ACTIONS(4923), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1546), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1548), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(265), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1513), 19, + STATE(2515), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23665,84 +45184,84 @@ static const uint16_t ts_small_parse_table[] = { [2970] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1554), 1, + ACTIONS(4927), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1552), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4925), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(266), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2638), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23801,19 +45320,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1558), 1, + ACTIONS(4931), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -23827,22 +45346,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1556), 3, + ACTIONS(4929), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(752), 19, + STATE(740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23871,78 +45390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, - aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1566), 1, + ACTIONS(4935), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1747), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1560), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1564), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4933), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(322), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1748), 19, + STATE(2640), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -23971,78 +45490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1572), 1, + ACTIONS(4939), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1489), 1, + sym_sym_lit, + STATE(1589), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1568), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1570), 3, + ACTIONS(4937), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(179), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1787), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1514), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24071,78 +45590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1578), 1, + ACTIONS(4943), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1574), 2, - sym__ws, - sym_comment, - ACTIONS(1576), 3, + ACTIONS(4941), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(175), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1788), 19, + STATE(2641), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24171,78 +45690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(4949), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1489), 1, + sym_sym_lit, + STATE(1589), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4945), 2, sym__ws, sym_comment, - ACTIONS(1580), 3, + ACTIONS(4947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1727), 19, + STATE(1512), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24265,84 +45784,84 @@ static const uint16_t ts_small_parse_table[] = { [3780] = 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(606), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1586), 1, + ACTIONS(4955), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4951), 2, sym__ws, sym_comment, - ACTIONS(1584), 3, + ACTIONS(4953), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1725), 19, + STATE(727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24371,78 +45890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_POUND, 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, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1590), 1, + ACTIONS(4959), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1588), 3, + ACTIONS(4957), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1141), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24471,78 +45990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 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, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1594), 1, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4965), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4961), 2, sym__ws, sym_comment, - ACTIONS(1592), 3, + ACTIONS(4963), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(412), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(2584), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24565,84 +46084,84 @@ static const uint16_t ts_small_parse_table[] = { [4185] = 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(606), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1600), 1, + ACTIONS(4971), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1596), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4967), 2, sym__ws, sym_comment, - ACTIONS(1598), 3, + ACTIONS(4969), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(205), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1724), 19, + STATE(726), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24701,19 +46220,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1606), 1, + ACTIONS(4975), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -24727,22 +46246,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1602), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1604), 3, + ACTIONS(4973), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(178), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(714), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24765,84 +46284,84 @@ static const uint16_t ts_small_parse_table[] = { [4455] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1612), 1, + ACTIONS(4981), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1608), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4977), 2, sym__ws, sym_comment, - ACTIONS(1610), 3, + ACTIONS(4979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(189), 3, + STATE(425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(711), 19, + STATE(2505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24901,19 +46420,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1616), 1, + ACTIONS(4987), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -24927,22 +46446,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4983), 2, sym__ws, sym_comment, - ACTIONS(1614), 3, + ACTIONS(4985), 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, + STATE(437), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(695), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -24971,78 +46490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1622), 1, + ACTIONS(4993), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1618), 2, + ACTIONS(4989), 2, sym__ws, sym_comment, - ACTIONS(1620), 3, + ACTIONS(4991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(170), 3, + STATE(426), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1792), 19, + STATE(2504), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25071,78 +46590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1628), 1, + ACTIONS(4999), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1624), 2, + ACTIONS(4995), 2, sym__ws, sym_comment, - ACTIONS(1626), 3, + ACTIONS(4997), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(168), 3, + STATE(427), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1795), 19, + STATE(2585), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25171,78 +46690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1632), 1, + ACTIONS(5005), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5001), 2, sym__ws, sym_comment, - ACTIONS(1630), 3, + ACTIONS(5003), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(447), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1722), 19, + STATE(2574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25271,78 +46790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1638), 1, + ACTIONS(5011), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1634), 2, + ACTIONS(5007), 2, sym__ws, sym_comment, - ACTIONS(1636), 3, + ACTIONS(5009), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(206), 3, + STATE(429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1721), 19, + STATE(2575), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25371,78 +46890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1642), 1, + ACTIONS(5017), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5013), 2, sym__ws, sym_comment, - ACTIONS(1640), 3, + ACTIONS(5015), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1714), 19, + STATE(2572), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25471,78 +46990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1646), 1, + ACTIONS(5021), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1644), 3, + ACTIONS(5019), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1713), 19, + STATE(2552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25565,84 +47084,84 @@ static const uint16_t ts_small_parse_table[] = { [5535] = 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(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5035), 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(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1652), 1, + ACTIONS(5057), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1648), 2, - sym__ws, - sym_comment, - ACTIONS(1650), 3, + ACTIONS(5025), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(200), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(654), 19, + STATE(2997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25671,78 +47190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 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, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1656), 1, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5065), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1654), 3, + ACTIONS(5063), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2279), 19, + STATE(2564), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25771,78 +47290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1660), 1, + ACTIONS(5069), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1658), 3, + ACTIONS(5067), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1957), 19, + STATE(2998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25865,84 +47384,84 @@ static const uint16_t ts_small_parse_table[] = { [5940] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1668), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5073), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1662), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1666), 3, + ACTIONS(5071), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(257), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1935), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(594), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -25965,84 +47484,84 @@ static const uint16_t ts_small_parse_table[] = { [6075] = 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(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1674), 1, + ACTIONS(5077), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1670), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1672), 3, + ACTIONS(5075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(195), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1938), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(590), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26071,78 +47590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 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, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1680), 1, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5083), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1676), 2, + ACTIONS(5079), 2, sym__ws, sym_comment, - ACTIONS(1678), 3, + ACTIONS(5081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(174), 3, + STATE(445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2268), 19, + STATE(2587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26171,78 +47690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1686), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5089), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1682), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5085), 2, sym__ws, sym_comment, - ACTIONS(1684), 3, + ACTIONS(5087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(177), 3, + STATE(446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2269), 19, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26265,84 +47784,84 @@ static const uint16_t ts_small_parse_table[] = { [6480] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1692), 1, + ACTIONS(5095), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1688), 2, + ACTIONS(5091), 2, sym__ws, sym_comment, - ACTIONS(1690), 3, + ACTIONS(5093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(547), 3, + STATE(683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1071), 19, + STATE(1870), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26371,78 +47890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(640), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(642), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1696), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5105), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5097), 2, sym__ws, sym_comment, - ACTIONS(1694), 3, + ACTIONS(5099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2121), 19, + STATE(1900), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26471,78 +47990,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, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1700), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1698), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5107), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(8), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2563), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26571,78 +48090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1704), 1, + ACTIONS(5115), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5111), 2, sym__ws, sym_comment, - ACTIONS(1702), 3, + ACTIONS(5113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1802), 19, + STATE(1901), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26665,84 +48184,84 @@ static const uint16_t ts_small_parse_table[] = { [7020] = 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, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + 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(506), 1, - anon_sym_cl, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(640), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(642), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1708), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5121), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5117), 2, sym__ws, sym_comment, - ACTIONS(1706), 3, + ACTIONS(5119), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(1869), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26771,78 +48290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5127), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1747), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5123), 2, sym__ws, sym_comment, - ACTIONS(1710), 3, + ACTIONS(5125), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(126), 19, + STATE(2739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26871,78 +48390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5131), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1714), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5129), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1887), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -26971,78 +48490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1720), 1, + ACTIONS(5137), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5133), 2, sym__ws, sym_comment, - ACTIONS(1718), 3, + ACTIONS(5135), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(815), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27071,78 +48590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1724), 1, + ACTIONS(5141), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1722), 3, + ACTIONS(5139), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(2677), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27171,78 +48690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5145), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1726), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2270), 19, + STATE(2920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27271,78 +48790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1732), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5149), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1730), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5147), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2027), 19, + STATE(2926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27371,78 +48890,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5155), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1734), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5151), 2, sym__ws, sym_comment, - ACTIONS(1736), 3, + ACTIONS(5153), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(260), 3, + STATE(611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1936), 19, + STATE(2690), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27471,78 +48990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1742), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5161), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5157), 2, sym__ws, sym_comment, - ACTIONS(1740), 3, + ACTIONS(5159), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2026), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27571,78 +49090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1746), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5167), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5163), 2, sym__ws, sym_comment, - ACTIONS(1744), 3, + ACTIONS(5165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(462), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(2977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27671,78 +49190,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1750), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5173), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5169), 2, sym__ws, sym_comment, - ACTIONS(1748), 3, + ACTIONS(5171), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2025), 19, + STATE(2727), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27771,78 +49290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(5199), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1752), 2, - sym__ws, - sym_comment, - ACTIONS(1754), 3, + ACTIONS(5177), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(274), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1937), 19, + STATE(3074), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27871,78 +49390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1760), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5205), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1758), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2024), 19, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -27971,78 +49490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1764), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5209), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1762), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2272), 19, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28071,78 +49590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1768), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5215), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5211), 2, sym__ws, sym_comment, - ACTIONS(1766), 3, + ACTIONS(5213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1860), 19, + STATE(2988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28171,78 +49690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1674), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5219), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1770), 2, - sym__ws, - sym_comment, - ACTIONS(1672), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5217), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(276), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1938), 19, + STATE(2948), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28271,78 +49790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(5225), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1772), 2, + ACTIONS(5221), 2, sym__ws, sym_comment, - ACTIONS(1774), 3, + ACTIONS(5223), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(291), 3, + STATE(468), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(3056), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28371,78 +49890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1782), 1, + ACTIONS(5231), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1778), 2, + ACTIONS(5227), 2, sym__ws, sym_comment, - ACTIONS(1780), 3, + ACTIONS(5229), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(275), 3, + STATE(469), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(2939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28471,78 +49990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5237), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1784), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5233), 2, sym__ws, sym_comment, - ACTIONS(1786), 3, + ACTIONS(5235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(196), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2283), 19, + STATE(2944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28571,78 +50090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5243), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5239), 2, sym__ws, sym_comment, - ACTIONS(1790), 3, + ACTIONS(5241), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(2961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28671,78 +50190,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(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(5247), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1796), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5245), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(3100), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28771,78 +50290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(967), 1, - anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(5251), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1800), 3, + ACTIONS(5249), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1810), 19, + STATE(3093), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28871,78 +50390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1806), 1, + ACTIONS(5255), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1804), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -28971,78 +50490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1810), 1, + ACTIONS(5259), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2149), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1808), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(2974), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29071,78 +50590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(5263), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1812), 2, - sym__ws, - sym_comment, - ACTIONS(1814), 3, + ACTIONS(5261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(279), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1961), 19, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29171,78 +50690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(5267), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1818), 3, + ACTIONS(5265), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1596), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1019), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29271,78 +50790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, - aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(5273), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1822), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5269), 2, sym__ws, sym_comment, - ACTIONS(1824), 3, + ACTIONS(5271), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(290), 3, + STATE(477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1963), 19, + STATE(3063), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29371,78 +50890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(506), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(604), 1, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(640), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(642), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(5279), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1828), 2, + ACTIONS(5275), 2, sym__ws, sym_comment, - ACTIONS(1830), 3, + ACTIONS(5277), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(223), 3, + STATE(478), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2348), 19, + STATE(3062), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29471,78 +50990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1836), 1, + ACTIONS(5285), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5281), 2, sym__ws, sym_comment, - ACTIONS(1834), 3, + ACTIONS(5283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1595), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29571,78 +51090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5291), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1838), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5287), 2, sym__ws, sym_comment, - ACTIONS(1840), 3, + ACTIONS(5289), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(232), 3, + STATE(480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1863), 19, + STATE(2936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29671,78 +51190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5297), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1844), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5293), 2, sym__ws, sym_comment, - ACTIONS(1846), 3, + ACTIONS(5295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(227), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2302), 19, + STATE(2935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29771,78 +51290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(736), 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, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5301), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1850), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1852), 3, + ACTIONS(5299), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(231), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2303), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1208), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29871,78 +51390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(736), 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, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5305), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1856), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1858), 3, + ACTIONS(5303), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(237), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2306), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1133), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -29965,84 +51484,84 @@ static const uint16_t ts_small_parse_table[] = { [11475] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1864), 1, + ACTIONS(5311), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5307), 2, sym__ws, sym_comment, - ACTIONS(1862), 3, + ACTIONS(5309), 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, + STATE(488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1518), 19, + STATE(1190), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1201), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30071,78 +51590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_POUND, 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, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(5315), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1866), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1868), 3, + ACTIONS(5313), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(321), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1964), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1200), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30171,78 +51690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5321), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5317), 2, sym__ws, sym_comment, - ACTIONS(1796), 3, + ACTIONS(5319), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(1199), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30271,78 +51790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5325), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1872), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1874), 3, + ACTIONS(5323), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(230), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2053), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1198), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30371,78 +51890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(5329), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1878), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1880), 3, + ACTIONS(5327), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(217), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1194), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30471,78 +51990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(736), 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, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5335), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5331), 2, sym__ws, sym_comment, - ACTIONS(1884), 3, + ACTIONS(5333), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(491), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1180), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30571,78 +52090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5341), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5337), 2, sym__ws, sym_comment, - ACTIONS(1888), 3, + ACTIONS(5339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1952), 19, + STATE(1178), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30671,78 +52190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5345), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1892), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5343), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2311), 19, + STATE(2537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30771,78 +52290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(736), 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, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1898), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5349), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1896), 3, + ACTIONS(5347), 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, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2312), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1176), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30871,78 +52390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5353), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1900), 3, + ACTIONS(5351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1953), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1175), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30971,78 +52490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1908), 1, + ACTIONS(5359), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1904), 2, + ACTIONS(5355), 2, sym__ws, sym_comment, - ACTIONS(1906), 3, + ACTIONS(5357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(243), 3, + STATE(494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1588), 19, + STATE(1172), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31065,84 +52584,84 @@ static const uint16_t ts_small_parse_table[] = { [12960] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1912), 1, + ACTIONS(5363), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1910), 3, + ACTIONS(5361), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1520), 19, + STATE(1171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31165,84 +52684,84 @@ static const uint16_t ts_small_parse_table[] = { [13095] = 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(4811), 1, + anon_sym_LPAREN, + ACTIONS(4889), 1, + sym_self_referential_reader_macro, + ACTIONS(5023), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(5035), 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(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1918), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1914), 2, + ACTIONS(5365), 2, sym__ws, sym_comment, - ACTIONS(1916), 3, + ACTIONS(4887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(346), 3, + STATE(497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1521), 19, + STATE(2523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31271,78 +52790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1922), 1, + ACTIONS(5371), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5367), 2, sym__ws, sym_comment, - ACTIONS(1920), 3, + ACTIONS(5369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1587), 19, + STATE(1163), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31365,84 +52884,84 @@ static const uint16_t ts_small_parse_table[] = { [13365] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1926), 1, + ACTIONS(5377), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5373), 2, sym__ws, sym_comment, - ACTIONS(1924), 3, + ACTIONS(5375), 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, + STATE(499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1522), 19, + STATE(1190), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1162), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31465,84 +52984,84 @@ static const uint16_t ts_small_parse_table[] = { [13500] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1932), 1, + ACTIONS(5383), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1928), 2, + ACTIONS(5379), 2, sym__ws, sym_comment, - ACTIONS(1930), 3, + ACTIONS(5381), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(349), 3, + STATE(501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1523), 19, + STATE(1159), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31571,78 +53090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4919), 1, + sym_self_referential_reader_macro, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1936), 1, - sym_self_referential_reader_macro, - STATE(2142), 1, + ACTIONS(5053), 1, + anon_sym_cl, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1934), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(2516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31671,78 +53190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4923), 1, + sym_self_referential_reader_macro, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 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, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(1940), 1, - sym_self_referential_reader_macro, - STATE(2142), 1, + ACTIONS(5053), 1, + anon_sym_cl, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1938), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2314), 19, + STATE(2515), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31765,84 +53284,84 @@ static const uint16_t ts_small_parse_table[] = { [13905] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1944), 1, + ACTIONS(5387), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1942), 3, + ACTIONS(5385), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(261), 19, + STATE(1155), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31865,84 +53384,84 @@ static const uint16_t ts_small_parse_table[] = { [14040] = 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(724), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(736), 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(740), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1948), 1, + ACTIONS(5391), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1946), 3, + ACTIONS(5389), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(280), 19, + STATE(1154), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31971,78 +53490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1954), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5395), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1950), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1952), 3, + ACTIONS(5393), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(228), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2054), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1153), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32071,78 +53590,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1960), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(5399), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1956), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1958), 3, + ACTIONS(5397), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(226), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2055), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32171,78 +53690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(4981), 1, + sym_self_referential_reader_macro, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1966), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + ACTIONS(5053), 1, + anon_sym_cl, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1962), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5401), 2, sym__ws, sym_comment, - ACTIONS(1964), 3, + ACTIONS(4979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(224), 3, + STATE(506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1976), 19, + STATE(2505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32271,78 +53790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(4993), 1, + sym_self_referential_reader_macro, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1970), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + ACTIONS(5053), 1, + anon_sym_cl, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5403), 2, sym__ws, sym_comment, - ACTIONS(1968), 3, + ACTIONS(4991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1954), 19, + STATE(2504), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32371,78 +53890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_POUND, 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, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1716), 1, + ACTIONS(5409), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5405), 2, sym__ws, sym_comment, - ACTIONS(1714), 3, + ACTIONS(5407), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1887), 19, + STATE(1135), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32471,78 +53990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1590), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5415), 1, sym_self_referential_reader_macro, - ACTIONS(1664), 1, - anon_sym_POUND, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5411), 2, sym__ws, sym_comment, - ACTIONS(1588), 3, + ACTIONS(5413), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(1134), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32571,78 +54090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(5421), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1972), 2, + ACTIONS(5417), 2, sym__ws, sym_comment, - ACTIONS(1974), 3, + ACTIONS(5419), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(219), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(150), 19, + STATE(1207), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32665,84 +54184,84 @@ static const uint16_t ts_small_parse_table[] = { [15120] = 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(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(5427), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1978), 2, + ACTIONS(5423), 2, sym__ws, sym_comment, - ACTIONS(1980), 3, + ACTIONS(5425), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(372), 3, + STATE(703), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1885), 19, + STATE(1868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32765,84 +54284,84 @@ static const uint16_t ts_small_parse_table[] = { [15255] = 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(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(5433), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5429), 2, sym__ws, sym_comment, - ACTIONS(1984), 3, + ACTIONS(5431), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(704), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1901), 19, + STATE(1867), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32871,78 +54390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(1992), 1, + ACTIONS(5437), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1988), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1990), 3, + ACTIONS(5435), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(246), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1585), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1037), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32971,78 +54490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1998), 1, + ACTIONS(5443), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2177), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1994), 2, + ACTIONS(5439), 2, sym__ws, sym_comment, - ACTIONS(1996), 3, + ACTIONS(5441), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(363), 3, + STATE(681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(11), 19, + STATE(1509), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33065,84 +54584,84 @@ static const uint16_t ts_small_parse_table[] = { [15660] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2004), 1, + ACTIONS(5449), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(2000), 2, + ACTIONS(5445), 2, sym__ws, sym_comment, - ACTIONS(2002), 3, + ACTIONS(5447), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(216), 3, + STATE(707), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(9), 19, + STATE(1866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33165,84 +54684,84 @@ static const uint16_t ts_small_parse_table[] = { [15795] = 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(776), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2010), 1, + ACTIONS(5455), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2006), 2, + ACTIONS(5451), 2, sym__ws, sym_comment, - ACTIONS(2008), 3, + ACTIONS(5453), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(366), 3, + STATE(449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(107), 19, + STATE(582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33271,78 +54790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(2016), 1, + ACTIONS(5459), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2012), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2014), 3, + ACTIONS(5457), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(222), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1822), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1035), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33371,78 +54890,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2022), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5465), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2018), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5461), 2, sym__ws, sym_comment, - ACTIONS(2020), 3, + ACTIONS(5463), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(369), 3, + STATE(540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2002), 19, + STATE(1902), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33471,78 +54990,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2028), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5471), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2024), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5467), 2, sym__ws, sym_comment, - ACTIONS(2026), 3, + ACTIONS(5469), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(371), 3, + STATE(519), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2001), 19, + STATE(1027), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33571,78 +55090,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2034), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5475), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2030), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2032), 3, + ACTIONS(5473), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(373), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2000), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1026), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33671,78 +55190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2038), 1, + ACTIONS(5481), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5477), 2, sym__ws, sym_comment, - ACTIONS(2036), 3, + ACTIONS(5479), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(543), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1584), 19, + STATE(2788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33771,78 +55290,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2044), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5487), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2040), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5483), 2, sym__ws, sym_comment, - ACTIONS(2042), 3, + ACTIONS(5485), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(375), 3, + STATE(523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1999), 19, + STATE(1025), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33871,78 +55390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2048), 1, + ACTIONS(5491), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2046), 3, + ACTIONS(5489), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1875), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1024), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33971,78 +55490,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1660), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5497), 1, sym_self_referential_reader_macro, - ACTIONS(1664), 1, - anon_sym_POUND, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5493), 2, sym__ws, sym_comment, - ACTIONS(1658), 3, + ACTIONS(5495), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1957), 19, + STATE(2787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34071,78 +55590,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1782), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5501), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2050), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1780), 3, + ACTIONS(5499), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(220), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1020), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34171,78 +55690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2056), 1, + ACTIONS(5505), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2052), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2054), 3, + ACTIONS(5503), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(381), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1256), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2782), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34271,78 +55790,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1816), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5511), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2058), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5507), 2, sym__ws, sym_comment, - ACTIONS(1814), 3, + ACTIONS(5509), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(409), 3, + STATE(526), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1961), 19, + STATE(1007), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34365,84 +55884,84 @@ static const uint16_t ts_small_parse_table[] = { [17415] = 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(606), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(2064), 1, + ACTIONS(5517), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2060), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5513), 2, sym__ws, sym_comment, - ACTIONS(2062), 3, + ACTIONS(5515), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(239), 3, + STATE(450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1820), 19, + STATE(580), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34471,78 +55990,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5521), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2066), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1824), 3, + ACTIONS(5519), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(810), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1963), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34565,84 +56084,84 @@ static const uint16_t ts_small_parse_table[] = { [17685] = 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(606), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(5525), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2068), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2070), 3, + ACTIONS(5523), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(240), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1818), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34665,84 +56184,84 @@ static const uint16_t ts_small_parse_table[] = { [17820] = 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(186), 1, + anon_sym_COLON_COLON, + ACTIONS(188), 1, + anon_sym_DQUOTE, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(205), 1, + anon_sym_POUND_QMARK, + ACTIONS(207), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5531), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5527), 2, sym__ws, sym_comment, - ACTIONS(2076), 3, + ACTIONS(5529), 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, + STATE(529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1475), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1054), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34801,19 +56320,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2084), 1, + ACTIONS(5537), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -34827,22 +56346,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2080), 2, + ACTIONS(5533), 2, sym__ws, sym_comment, - ACTIONS(2082), 3, + ACTIONS(5535), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(305), 3, + STATE(885), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(476), 19, + STATE(729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34871,78 +56390,178 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5541), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1636), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1662), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5539), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1971), 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, + [18225] = 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(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, + anon_sym_COLON_COLON, + ACTIONS(1630), 1, + anon_sym_DQUOTE, + ACTIONS(1632), 1, + aux_sym_sym_lit_token1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, + anon_sym_POUND_QMARK, + ACTIONS(1640), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1642), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(1644), 1, + anon_sym_SQUOTE, + ACTIONS(1646), 1, + anon_sym_BQUOTE, + ACTIONS(1648), 1, + anon_sym_COMMA_AT, + ACTIONS(1650), 1, + anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5545), 1, + sym_self_referential_reader_macro, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, + aux_sym_list_lit_repeat1, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2086), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1868), 3, + ACTIONS(5543), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(807), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1964), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34962,7 +56581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18225] = 35, + [18360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -35001,19 +56620,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2092), 1, + ACTIONS(5549), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -35027,22 +56646,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2088), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2090), 3, + ACTIONS(5547), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(269), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(329), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35062,7 +56681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18360] = 35, + [18495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35071,78 +56690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5553), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2094), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2096), 3, + ACTIONS(5551), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(392), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1994), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35162,87 +56781,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18495] = 35, + [18630] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2104), 1, + ACTIONS(5557), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2100), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2102), 3, + ACTIONS(5555), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(270), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(330), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2775), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35262,7 +56881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18630] = 35, + [18765] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -35301,19 +56920,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2110), 1, + ACTIONS(5561), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -35327,22 +56946,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2106), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2108), 3, + ACTIONS(5559), 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, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(187), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35362,87 +56981,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18765] = 35, + [18900] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2114), 1, + ACTIONS(5565), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2112), 3, + ACTIONS(5563), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(529), 19, + STATE(2774), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35462,7 +57081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [18900] = 35, + [19035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35471,78 +57090,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2118), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5569), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2116), 3, + ACTIONS(5567), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1995), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1098), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35562,7 +57181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19035] = 35, + [19170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35571,78 +57190,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1982), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5575), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2120), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5571), 2, sym__ws, sym_comment, - ACTIONS(1980), 3, + ACTIONS(5573), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(798), 3, + STATE(554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1885), 19, + STATE(1968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35662,7 +57281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19170] = 35, + [19305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -35701,19 +57320,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2126), 1, + ACTIONS(5581), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -35727,22 +57346,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2122), 2, + ACTIONS(5577), 2, sym__ws, sym_comment, - ACTIONS(2124), 3, + ACTIONS(5579), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(323), 3, + STATE(544), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(540), 19, + STATE(547), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35762,7 +57381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19305] = 35, + [19440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35771,78 +57390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(5585), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2128), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1754), 3, + ACTIONS(5583), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(352), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1937), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1108), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35862,7 +57481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19440] = 35, + [19575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35871,78 +57490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(2134), 1, + ACTIONS(5591), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2130), 2, + ACTIONS(5587), 2, sym__ws, sym_comment, - ACTIONS(2132), 3, + ACTIONS(5589), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(473), 3, + STATE(532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2330), 19, + STATE(2796), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35962,7 +57581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19575] = 35, + [19710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35971,78 +57590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(5597), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5593), 2, sym__ws, sym_comment, - ACTIONS(2136), 3, + ACTIONS(5595), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1582), 19, + STATE(1966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36062,7 +57681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19710] = 35, + [19845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36071,78 +57690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(640), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(642), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2134), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5603), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2140), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5599), 2, sym__ws, sym_comment, - ACTIONS(2132), 3, + ACTIONS(5601), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(256), 3, + STATE(573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2330), 19, + STATE(1965), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36162,87 +57781,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19845] = 35, + [19980] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2144), 1, + ACTIONS(5609), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5605), 2, sym__ws, sym_comment, - ACTIONS(2142), 3, + ACTIONS(5607), 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, + STATE(576), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(347), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2772), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36262,7 +57881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [19980] = 35, + [20115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36271,78 +57890,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + aux_sym_num_lit_token1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2150), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5613), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2146), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2148), 3, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(406), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1993), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1962), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36362,7 +57981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20115] = 35, + [20250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36371,78 +57990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(2156), 1, + ACTIONS(5619), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2152), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5615), 2, sym__ws, sym_comment, - ACTIONS(2154), 3, + ACTIONS(5617), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(241), 3, + STATE(531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(1120), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36462,7 +58081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20250] = 35, + [20385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36471,78 +58090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(190), 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, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2162), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5623), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2158), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2160), 3, + ACTIONS(5621), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(258), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2329), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1122), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36562,7 +58181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20385] = 35, + [20520] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36571,78 +58190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(736), 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, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2168), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5629), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1189), 1, + sym_sym_lit, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2164), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5625), 2, sym__ws, sym_comment, - ACTIONS(2166), 3, + ACTIONS(5627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(259), 3, + STATE(542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2327), 19, + STATE(1164), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36662,7 +58281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20520] = 35, + [20655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36671,78 +58290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(190), 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, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2174), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5635), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2170), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5631), 2, sym__ws, sym_comment, - ACTIONS(2172), 3, + ACTIONS(5633), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(267), 3, + STATE(546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2325), 19, + STATE(1103), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36762,187 +58381,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [20655] = 35, + [20790] = 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(177), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(190), 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(205), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(2180), 1, + ACTIONS(5641), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2176), 2, + ACTIONS(5637), 2, sym__ws, sym_comment, - ACTIONS(2178), 3, + ACTIONS(5639), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(339), 3, + STATE(549), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(542), 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, - [20790] = 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(2186), 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(2182), 2, - sym__ws, - sym_comment, - ACTIONS(2184), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(268), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2324), 19, + STATE(1091), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36971,78 +58490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2190), 1, + ACTIONS(5647), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5643), 2, sym__ws, sym_comment, - ACTIONS(2188), 3, + ACTIONS(5645), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(556), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1932), 19, + STATE(1053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37071,78 +58590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(5651), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2192), 3, + ACTIONS(5649), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1779), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1157), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37201,19 +58720,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2198), 1, + ACTIONS(5655), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -37227,22 +58746,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2196), 3, + ACTIONS(5653), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(567), 19, + STATE(409), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37271,78 +58790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_POUND, 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, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(5659), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2200), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2202), 3, + ACTIONS(5657), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(379), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1949), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1156), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37371,78 +58890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(5663), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2206), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2208), 3, + ACTIONS(5661), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(413), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1555), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37465,84 +58984,84 @@ static const uint16_t ts_small_parse_table[] = { [21600] = 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(556), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(5667), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2212), 3, + ACTIONS(5665), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1367), 19, + STATE(442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37571,78 +59090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(5671), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2216), 3, + ACTIONS(5669), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1366), 19, + STATE(1001), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37665,84 +59184,84 @@ static const uint16_t ts_small_parse_table[] = { [21870] = 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(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(5677), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2220), 2, + ACTIONS(5673), 2, sym__ws, sym_comment, - ACTIONS(1774), 3, + ACTIONS(5675), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(209), 3, + STATE(562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(435), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37771,78 +59290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(5681), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2222), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2224), 3, + ACTIONS(5679), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(264), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1575), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1002), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37871,78 +59390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2232), 1, + ACTIONS(5687), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2228), 2, + ACTIONS(5683), 2, sym__ws, sym_comment, - ACTIONS(2230), 3, + ACTIONS(5685), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(288), 3, + STATE(585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1737), 19, + STATE(1961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37965,84 +59484,84 @@ static const uint16_t ts_small_parse_table[] = { [22275] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2238), 1, + ACTIONS(5691), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2234), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2236), 3, + ACTIONS(5689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(313), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(428), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1959), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38071,78 +59590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(177), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(2242), 1, + ACTIONS(5695), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2240), 3, + ACTIONS(5693), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(845), 19, + STATE(1003), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38171,78 +59690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, - aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(5699), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2244), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5697), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1736), 19, + STATE(3098), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38271,78 +59790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(5703), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(2762), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2248), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2250), 3, + ACTIONS(5701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(326), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1350), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38371,78 +59890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(5709), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5705), 2, sym__ws, sym_comment, - ACTIONS(2254), 3, + ACTIONS(5707), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1760), 19, + STATE(1137), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38471,78 +59990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(732), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(5715), 1, sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, + STATE(1189), 1, sym_sym_lit, - STATE(2172), 1, + STATE(1191), 1, + sym__bare_set_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(754), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(760), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5711), 2, sym__ws, sym_comment, - ACTIONS(2258), 3, + ACTIONS(5713), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1341), 19, + STATE(1190), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1136), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38571,78 +60090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(5719), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2262), 3, + ACTIONS(5717), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1761), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2789), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38671,78 +60190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(5725), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2266), 2, + ACTIONS(5721), 2, sym__ws, sym_comment, - ACTIONS(2268), 3, + ACTIONS(5723), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(327), 3, + STATE(566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1335), 19, + STATE(1039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38765,84 +60284,84 @@ static const uint16_t ts_small_parse_table[] = { [23355] = 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(177), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(190), 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(205), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(2274), 1, + ACTIONS(5731), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5727), 2, sym__ws, sym_comment, - ACTIONS(2272), 3, + ACTIONS(5729), 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, + STATE(568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(605), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38871,78 +60390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(190), 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, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2280), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5737), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2276), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5733), 2, sym__ws, sym_comment, - ACTIONS(2278), 3, + ACTIONS(5735), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(513), 3, + STATE(571), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2425), 19, + STATE(1046), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38971,78 +60490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2284), 1, + ACTIONS(5743), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(2762), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5739), 2, sym__ws, sym_comment, - ACTIONS(2282), 3, + ACTIONS(5741), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1334), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39065,84 +60584,84 @@ static const uint16_t ts_small_parse_table[] = { [23760] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2290), 1, + ACTIONS(5749), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(2286), 2, + ACTIONS(5745), 2, sym__ws, sym_comment, - ACTIONS(2288), 3, + ACTIONS(5747), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(332), 3, + STATE(565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(920), 19, + STATE(451), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39171,78 +60690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2294), 1, + ACTIONS(5755), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(2762), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5751), 2, sym__ws, sym_comment, - ACTIONS(2292), 3, + ACTIONS(5753), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(591), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1331), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39271,78 +60790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2300), 1, + ACTIONS(5759), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2296), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2298), 3, + ACTIONS(5757), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(336), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1317), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1407), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39371,78 +60890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1940), 1, + ACTIONS(5763), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1482), 1, + sym__bare_set_lit, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1938), 3, + ACTIONS(5761), 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, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2314), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1408), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39465,84 +60984,84 @@ static const uint16_t ts_small_parse_table[] = { [24300] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2304), 1, + ACTIONS(5767), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2302), 3, + ACTIONS(5765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1530), 19, + STATE(1955), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39571,78 +61090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2310), 1, + ACTIONS(5773), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2306), 2, + ACTIONS(5769), 2, sym__ws, sym_comment, - ACTIONS(2308), 3, + ACTIONS(5771), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(311), 3, + STATE(583), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1765), 19, + STATE(1284), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39671,78 +61190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2314), 1, + ACTIONS(5777), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2312), 3, + ACTIONS(5775), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1766), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1414), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39765,84 +61284,84 @@ static const uint16_t ts_small_parse_table[] = { [24705] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2318), 1, + ACTIONS(5781), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2316), 3, + ACTIONS(5779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1531), 19, + STATE(1953), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39871,78 +61390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2324), 1, + ACTIONS(5787), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2320), 2, + ACTIONS(5783), 2, sym__ws, sym_comment, - ACTIONS(2322), 3, + ACTIONS(5785), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(341), 3, + STATE(584), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1319), 19, + STATE(1415), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39965,84 +61484,84 @@ static const uint16_t ts_small_parse_table[] = { [24975] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2330), 1, + ACTIONS(5793), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2326), 2, + ACTIONS(5789), 2, sym__ws, sym_comment, - ACTIONS(2328), 3, + ACTIONS(5791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(358), 3, + STATE(597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(235), 19, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40071,78 +61590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1970), 1, + ACTIONS(5797), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1968), 3, + ACTIONS(5795), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1954), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1951), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40171,78 +61690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(5801), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1900), 3, + ACTIONS(5799), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1953), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1416), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40271,78 +61790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(5805), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2332), 3, + ACTIONS(5803), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1373), 19, + STATE(1418), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40371,78 +61890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(5811), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(2762), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5807), 2, sym__ws, sym_comment, - ACTIONS(2336), 3, + ACTIONS(5809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1304), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40465,84 +61984,84 @@ static const uint16_t ts_small_parse_table[] = { [25650] = 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(2728), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2741), 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(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(2342), 1, + ACTIONS(5817), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5813), 2, sym__ws, sym_comment, - ACTIONS(2340), 3, + ACTIONS(5815), 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, + STATE(587), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(545), 19, + STATE(1483), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1423), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40565,84 +62084,84 @@ static const uint16_t ts_small_parse_table[] = { [25785] = 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(2728), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2741), 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(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(2346), 1, + ACTIONS(5823), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5819), 2, sym__ws, sym_comment, - ACTIONS(2344), 3, + ACTIONS(5821), 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, + STATE(592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(551), 19, + STATE(1483), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1424), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40665,84 +62184,84 @@ static const uint16_t ts_small_parse_table[] = { [25920] = 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(1620), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(2350), 1, + ACTIONS(5827), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2348), 3, + ACTIONS(5825), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(278), 19, + STATE(1946), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40765,84 +62284,84 @@ static const uint16_t ts_small_parse_table[] = { [26055] = 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(186), 1, + anon_sym_COLON_COLON, + ACTIONS(188), 1, + anon_sym_DQUOTE, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(205), 1, + anon_sym_POUND_QMARK, + ACTIONS(207), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2356), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5831), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2352), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2354), 3, + ACTIONS(5829), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(399), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1467), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40865,84 +62384,84 @@ static const uint16_t ts_small_parse_table[] = { [26190] = 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, + ACTIONS(1620), 1, + anon_sym_POUND, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(1628), 1, + anon_sym_COLON_COLON, + ACTIONS(1630), 1, + anon_sym_DQUOTE, + ACTIONS(1632), 1, + aux_sym_sym_lit_token1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, + anon_sym_POUND_QMARK, + ACTIONS(1640), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_cl, + ACTIONS(5835), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2762), 1, + sym_sym_lit, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(1658), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2358), 2, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2360), 3, + ACTIONS(5833), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(402), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1468), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1945), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40971,78 +62490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(5839), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2364), 3, + ACTIONS(5837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1305), 19, + STATE(1426), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41065,6 +62584,10 @@ static const uint16_t ts_small_parse_table[] = { [26460] = 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, @@ -41083,66 +62606,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2372), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5843), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(2368), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2370), 3, + ACTIONS(5841), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(470), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1469), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(415), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41171,78 +62690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2376), 1, + ACTIONS(5849), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2177), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5845), 2, sym__ws, sym_comment, - ACTIONS(2374), 3, + ACTIONS(5847), 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, + STATE(675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(7), 19, + STATE(1612), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1507), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41265,84 +62784,84 @@ static const uint16_t ts_small_parse_table[] = { [26730] = 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, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + ACTIONS(4757), 1, + anon_sym_DQUOTE, + ACTIONS(4759), 1, + aux_sym_sym_lit_token1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, + anon_sym_POUND_QMARK, + ACTIONS(4767), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(5855), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2378), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5851), 2, sym__ws, sym_comment, - ACTIONS(2380), 3, + ACTIONS(5853), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(555), 3, + STATE(679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1470), 19, + STATE(1508), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41365,84 +62884,84 @@ static const uint16_t ts_small_parse_table[] = { [26865] = 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(2728), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2741), 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(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(2388), 1, + ACTIONS(5859), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2384), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2386), 3, + ACTIONS(5857), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(401), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(324), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1427), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41471,78 +62990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(5863), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1747), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2390), 3, + ACTIONS(5861), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(80), 19, + STATE(2707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41565,84 +63084,84 @@ static const uint16_t ts_small_parse_table[] = { [27135] = 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5869), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2394), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5865), 2, sym__ws, sym_comment, - ACTIONS(2396), 3, + ACTIONS(5867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(564), 3, + STATE(784), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1471), 19, + STATE(2702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41671,78 +63190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2404), 1, + ACTIONS(5875), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2400), 2, + ACTIONS(5871), 2, sym__ws, sym_comment, - ACTIONS(2402), 3, + ACTIONS(5873), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(343), 3, + STATE(593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1308), 19, + STATE(1430), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41771,78 +63290,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5881), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5877), 2, sym__ws, sym_comment, - ACTIONS(2406), 3, + ACTIONS(5879), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1983), 19, + STATE(2699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41871,78 +63390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(5885), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2410), 3, + ACTIONS(5883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1309), 19, + STATE(1431), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41971,78 +63490,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(5891), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5887), 2, sym__ws, sym_comment, - ACTIONS(2414), 3, + ACTIONS(5889), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(598), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1982), 19, + STATE(1113), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42071,78 +63590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(5895), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2418), 3, + ACTIONS(5893), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1962), 19, + STATE(2694), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42171,78 +63690,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2424), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5901), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5897), 2, sym__ws, sym_comment, - ACTIONS(2422), 3, + ACTIONS(5899), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(790), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1981), 19, + STATE(2692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42271,78 +63790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2430), 1, + ACTIONS(5907), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2426), 2, + ACTIONS(5903), 2, sym__ws, sym_comment, - ACTIONS(2428), 3, + ACTIONS(5905), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(354), 3, + STATE(600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1316), 19, + STATE(1439), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42371,178 +63890,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, anon_sym_POUND, - ACTIONS(2434), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2432), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1980), 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, - [28350] = 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(556), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2440), 1, + ACTIONS(5913), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2436), 2, + ACTIONS(5909), 2, sym__ws, sym_comment, - ACTIONS(2438), 3, + ACTIONS(5911), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(355), 3, + STATE(604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1318), 19, + STATE(1440), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42562,7 +63981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28485] = 35, + [28350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42571,78 +63990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2446), 1, + ACTIONS(5917), 1, sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2442), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2444), 3, + ACTIONS(5915), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(361), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1320), 19, + STATE(2712), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42662,7 +64081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28620] = 35, + [28485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42671,78 +64090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2452), 1, + ACTIONS(5923), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2448), 2, + ACTIONS(5919), 2, sym__ws, sym_comment, - ACTIONS(2450), 3, + ACTIONS(5921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(370), 3, + STATE(609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1325), 19, + STATE(1443), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42762,7 +64181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28755] = 35, + [28620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42771,78 +64190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(5927), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2454), 3, + ACTIONS(5925), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1922), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(999), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42862,7 +64281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28890] = 35, + [28755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42871,78 +64290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2460), 1, + ACTIONS(5933), 1, sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5929), 2, sym__ws, sym_comment, - ACTIONS(2458), 3, + ACTIONS(5931), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1327), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2691), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42962,7 +64381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29025] = 35, + [28890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42971,78 +64390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(5937), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2462), 3, + ACTIONS(5935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1194), 19, + STATE(1000), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43062,7 +64481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29160] = 35, + [29025] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43071,78 +64490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(5941), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2466), 3, + ACTIONS(5939), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1329), 19, + STATE(1447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43162,7 +64581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29295] = 35, + [29160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43171,78 +64590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2474), 1, + ACTIONS(5945), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2470), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2472), 3, + ACTIONS(5943), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(481), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1176), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1448), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43262,7 +64681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29430] = 35, + [29295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43271,78 +64690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2478), 1, + ACTIONS(5949), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2476), 3, + ACTIONS(5947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1336), 19, + STATE(1449), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43362,7 +64781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29565] = 35, + [29430] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43371,78 +64790,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, - aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2482), 1, + ACTIONS(5953), 1, sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2480), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1337), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43462,87 +64881,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29700] = 35, + [29565] = 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(177), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(190), 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(205), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(2488), 1, + ACTIONS(5959), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2484), 2, + ACTIONS(5955), 2, sym__ws, sym_comment, - ACTIONS(2486), 3, + ACTIONS(5957), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(420), 3, + STATE(617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(325), 19, + STATE(1033), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43562,7 +64981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29835] = 35, + [29700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43571,78 +64990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2492), 1, + ACTIONS(5965), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5961), 2, sym__ws, sym_comment, - ACTIONS(2490), 3, + ACTIONS(5963), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1338), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43662,7 +65081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29970] = 35, + [29835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43671,78 +65090,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2496), 1, + ACTIONS(5971), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5967), 2, sym__ws, sym_comment, - ACTIONS(2494), 3, + ACTIONS(5969), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(620), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1351), 19, + STATE(1483), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43762,7 +65181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30105] = 35, + [29970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43771,78 +65190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1936), 1, + ACTIONS(5977), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1482), 1, + sym__bare_set_lit, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5973), 2, sym__ws, sym_comment, - ACTIONS(1934), 3, + ACTIONS(5975), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43862,7 +65281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30240] = 35, + [30105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43871,78 +65290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, - anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2502), 1, + ACTIONS(5983), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2498), 2, + ACTIONS(5979), 2, sym__ws, sym_comment, - ACTIONS(2500), 3, + ACTIONS(5981), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(380), 3, + STATE(622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1361), 19, + STATE(1468), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43962,87 +65381,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30375] = 35, + [30240] = 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(556), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(5989), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2504), 2, + ACTIONS(5985), 2, sym__ws, sym_comment, - ACTIONS(2506), 3, + ACTIONS(5987), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(382), 3, + STATE(601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1362), 19, + STATE(424), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44062,187 +65481,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30510] = 35, + [30375] = 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, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 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(2512), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2510), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1979), 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, - [30645] = 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(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, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(2516), 1, + ACTIONS(5993), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2514), 3, + ACTIONS(5991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2173), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1860), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44262,7 +65581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30780] = 35, + [30510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44271,78 +65590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, + ACTIONS(724), 1, + anon_sym_POUND, + ACTIONS(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2522), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(5999), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2518), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5995), 2, sym__ws, sym_comment, - ACTIONS(2520), 3, + ACTIONS(5997), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(489), 3, + STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1978), 19, + STATE(1192), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44362,7 +65681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30915] = 35, + [30645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -44401,19 +65720,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2528), 1, + ACTIONS(6003), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -44427,22 +65746,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2524), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2526), 3, + ACTIONS(6001), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(356), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(569), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(452), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44462,7 +65781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31050] = 35, + [30780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -44501,19 +65820,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2534), 1, + ACTIONS(6007), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -44527,22 +65846,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2530), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2532), 3, + ACTIONS(6005), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(357), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(583), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44562,87 +65881,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31185] = 35, + [30915] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2540), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6013), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2536), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6009), 2, sym__ws, sym_comment, - ACTIONS(2538), 3, + ACTIONS(6011), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(494), 3, + STATE(632), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1977), 19, + STATE(465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44662,7 +65981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31320] = 35, + [31050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -44701,19 +66020,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2544), 1, + ACTIONS(6019), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -44727,22 +66046,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6015), 2, sym__ws, sym_comment, - ACTIONS(2542), 3, + ACTIONS(6017), 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, + STATE(633), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(593), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44762,9 +66081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31455] = 35, + [31185] = 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, @@ -44783,66 +66106,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2548), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6023), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2546), 3, + ACTIONS(6021), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1487), 19, + STATE(471), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44862,107 +66181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31590] = 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(2554), 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(2550), 2, - sym__ws, - sym_comment, - ACTIONS(2552), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(500), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2056), 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, - [31725] = 35, + [31320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -45001,19 +66220,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2558), 1, + ACTIONS(6029), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -45027,22 +66246,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6025), 2, sym__ws, sym_comment, - ACTIONS(2556), 3, + ACTIONS(6027), 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, + STATE(636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(412), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(476), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45062,87 +66281,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31860] = 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(49), 1, - anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(186), 1, + anon_sym_COLON_COLON, + ACTIONS(188), 1, + anon_sym_DQUOTE, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(205), 1, + anon_sym_POUND_QMARK, + ACTIONS(207), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(6035), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6031), 2, sym__ws, sym_comment, - ACTIONS(2560), 3, + ACTIONS(6033), 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, + STATE(482), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1488), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1067), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45162,7 +66381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31995] = 35, + [31590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45171,78 +66390,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5297), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2566), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + ACTIONS(6065), 1, + anon_sym_cl, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6037), 2, sym__ws, sym_comment, - ACTIONS(2564), 3, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1996), 19, + STATE(2935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45262,7 +66481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32130] = 35, + [31725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45271,78 +66490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(5291), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, - sym_sym_lit, - STATE(2172), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(592), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2568), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6069), 2, sym__ws, sym_comment, - ACTIONS(2570), 3, + ACTIONS(5289), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(384), 3, + STATE(648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1369), 19, + STATE(2936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45362,7 +66581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32265] = 35, + [31860] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45371,78 +66590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(556), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(5285), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(2578), 1, - sym_self_referential_reader_macro, - STATE(1386), 1, - sym__bare_set_lit, - STATE(1388), 1, - sym_sym_lit, - STATE(2172), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(592), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2574), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6071), 2, sym__ws, sym_comment, - ACTIONS(2576), 3, + ACTIONS(5283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(385), 3, + STATE(651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1370), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45462,7 +66681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32400] = 35, + [31995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45471,78 +66690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2582), 1, + ACTIONS(6065), 1, + anon_sym_cl, + ACTIONS(6077), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6067), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6073), 2, sym__ws, sym_comment, - ACTIONS(2580), 3, + ACTIONS(6075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(652), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1986), 19, + STATE(2811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45562,187 +66781,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32535] = 35, + [32130] = 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, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 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(2586), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2584), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1992), 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, - [32670] = 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, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2592), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6081), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2588), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2590), 3, + ACTIONS(6079), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(511), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1985), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(490), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45762,7 +66881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32805] = 35, + [32265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45771,78 +66890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(1986), 1, + ACTIONS(6065), 1, + anon_sym_cl, + ACTIONS(6087), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6067), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6083), 2, sym__ws, sym_comment, - ACTIONS(1984), 3, + ACTIONS(6085), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1901), 19, + STATE(2801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45862,7 +66981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32940] = 35, + [32400] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45871,78 +66990,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2598), 1, + ACTIONS(6065), 1, + anon_sym_cl, + ACTIONS(6091), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6067), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2594), 2, - sym__ws, - sym_comment, - ACTIONS(2596), 3, + ACTIONS(6089), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(514), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1984), 19, + STATE(2829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45962,7 +67081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33075] = 35, + [32535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -46001,19 +67120,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2604), 1, + ACTIONS(6095), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -46027,22 +67146,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2600), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2602), 3, + ACTIONS(6093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(398), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(620), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(492), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46062,7 +67181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33210] = 35, + [32670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46071,78 +67190,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5263), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2606), 2, - sym__ws, - sym_comment, - ACTIONS(2608), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(416), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1923), 19, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46162,7 +67281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33345] = 35, + [32805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46171,78 +67290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5259), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2614), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2612), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1926), 19, + STATE(2974), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46262,87 +67381,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33480] = 35, + [32940] = 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(1794), 1, - anon_sym_POUND, - ACTIONS(1898), 1, + ACTIONS(6101), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(1450), 2, + ACTIONS(6097), 2, sym__ws, sym_comment, - ACTIONS(1896), 3, + ACTIONS(6099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2312), 19, + STATE(495), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46362,87 +67481,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33615] = 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(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2620), 1, + ACTIONS(6107), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2616), 2, + ACTIONS(6103), 2, sym__ws, sym_comment, - ACTIONS(2618), 3, + ACTIONS(6105), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(417), 3, + STATE(646), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1948), 19, + STATE(496), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46462,7 +67581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33750] = 35, + [33210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46471,78 +67590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5255), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2624), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2622), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1878), 19, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46562,7 +67681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33885] = 35, + [33345] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46571,78 +67690,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2628), 1, + ACTIONS(6111), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2626), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1879), 19, + STATE(2840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46662,87 +67781,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34020] = 35, + [33480] = 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(546), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2156), 1, + ACTIONS(6115), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(2630), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2154), 3, + ACTIONS(6113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(434), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1816), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(500), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46762,7 +67881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34155] = 35, + [33615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46771,78 +67890,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(6119), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3039), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1892), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6117), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2311), 19, + STATE(2817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46862,87 +67981,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34290] = 35, + [33750] = 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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(5243), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2634), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6121), 2, sym__ws, sym_comment, - ACTIONS(2632), 3, + ACTIONS(5241), 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, + STATE(660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(415), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46962,7 +68081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34425] = 35, + [33885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46971,78 +68090,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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(5237), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2072), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2636), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6123), 2, sym__ws, sym_comment, - ACTIONS(2070), 3, + ACTIONS(5235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(436), 3, + STATE(663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1818), 19, + STATE(2944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47062,7 +68181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34560] = 35, + [34020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47071,78 +68190,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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(5231), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2064), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2638), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6125), 2, sym__ws, sym_comment, - ACTIONS(2062), 3, + ACTIONS(5229), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(437), 3, + STATE(664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1820), 19, + STATE(2939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47162,7 +68281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34695] = 35, + [34155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47171,78 +68290,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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2644), 1, + ACTIONS(6131), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2640), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6127), 2, sym__ws, sym_comment, - ACTIONS(2642), 3, + ACTIONS(6129), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(432), 3, + STATE(665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2207), 19, + STATE(2799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47262,87 +68381,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34830] = 35, + [34290] = 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(776), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2650), 1, + ACTIONS(6137), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2646), 2, + ACTIONS(6133), 2, sym__ws, sym_comment, - ACTIONS(2648), 3, + ACTIONS(6135), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(333), 3, + STATE(653), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1797), 19, + STATE(505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47362,7 +68481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34965] = 35, + [34425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47371,78 +68490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5219), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2656), 1, - sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2652), 2, - sym__ws, - sym_comment, - ACTIONS(2654), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5217), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(335), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1803), 19, + STATE(2948), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47462,7 +68581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35100] = 35, + [34560] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47471,78 +68590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(5215), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(2662), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2167), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2658), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6139), 2, sym__ws, sym_comment, - ACTIONS(2660), 3, + ACTIONS(5213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(628), 3, + STATE(670), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1857), 19, + STATE(2988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47562,87 +68681,90 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35235] = 35, + [34695] = 36, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, - aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, - anon_sym_COMMA_AT, - ACTIONS(808), 1, - anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2668), 1, + ACTIONS(6145), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2664), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6141), 2, sym__ws, sym_comment, - ACTIONS(2666), 3, + STATE(1992), 2, + sym_unquote_splicing_lit, + sym_unquoting_lit, + ACTIONS(6143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(337), 3, + STATE(911), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1817), 19, + STATE(2760), 17, sym__form, sym_num_lit, sym_kwd_lit, @@ -47656,13 +68778,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35370] = 35, + [34832] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47671,78 +68791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5209), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2674), 1, - sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2670), 2, - sym__ws, - sym_comment, - ACTIONS(2672), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(348), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1740), 19, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47762,7 +68882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35505] = 35, + [34967] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47771,78 +68891,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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(5205), 1, + sym_self_referential_reader_macro, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2016), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2676), 2, - sym__ws, - sym_comment, - ACTIONS(2014), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(441), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1822), 19, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47862,87 +68982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35640] = 35, + [35102] = 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(5179), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2682), 1, + ACTIONS(6149), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2678), 2, - sym__ws, - sym_comment, - ACTIONS(2680), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6147), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(626), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(566), 19, + STATE(2837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47962,7 +69082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35775] = 35, + [35237] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47971,78 +69091,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(5167), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1882), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2684), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6151), 2, sym__ws, sym_comment, - ACTIONS(1880), 3, + ACTIONS(5165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(443), 3, + STATE(671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1824), 19, + STATE(2977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48062,7 +69182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35910] = 35, + [35372] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48071,78 +69191,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(5161), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2688), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6153), 2, sym__ws, sym_comment, - ACTIONS(2686), 3, + ACTIONS(5159), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2190), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48162,7 +69282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36045] = 35, + [35507] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48171,78 +69291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2692), 1, + ACTIONS(6157), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2690), 3, + ACTIONS(6155), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1733), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48262,7 +69382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36180] = 35, + [35642] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48271,78 +69391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1810), 1, + ACTIONS(6163), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6159), 2, sym__ws, sym_comment, - ACTIONS(1808), 3, + ACTIONS(6161), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1812), 19, + STATE(1510), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48362,7 +69482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36315] = 35, + [35777] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48371,78 +69491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(5149), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2696), 1, - sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2694), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5147), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1732), 19, + STATE(2926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48462,7 +69582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36450] = 35, + [35912] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48471,78 +69591,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(5145), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1806), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1804), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1811), 19, + STATE(2920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48562,7 +69682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36585] = 35, + [36047] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48571,78 +69691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1802), 1, + ACTIONS(6169), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6165), 2, sym__ws, sym_comment, - ACTIONS(1800), 3, + ACTIONS(6167), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(687), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1810), 19, + STATE(1511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48662,87 +69782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36720] = 35, + [36182] = 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(2728), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(2741), 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(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(2702), 1, + ACTIONS(6175), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2698), 2, + ACTIONS(6171), 2, sym__ws, sym_comment, - ACTIONS(2700), 3, + ACTIONS(6173), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(186), 3, + STATE(511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(185), 19, + STATE(1481), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48762,87 +69882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36855] = 35, + [36317] = 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(5137), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2708), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2704), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6177), 2, sym__ws, sym_comment, - ACTIONS(2706), 3, + ACTIONS(5135), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(184), 3, + STATE(680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1498), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48862,87 +69982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36990] = 35, + [36452] = 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(4747), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2714), 1, + ACTIONS(6181), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2710), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2712), 3, + ACTIONS(6179), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(182), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1497), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1529), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48962,7 +70082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37125] = 35, + [36587] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48971,78 +70091,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(5131), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1724), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1722), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5129), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1809), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49062,87 +70182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37260] = 35, + [36722] = 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(776), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2718), 1, + ACTIONS(6185), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2716), 3, + ACTIONS(6183), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1731), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(525), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49162,7 +70282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37395] = 35, + [36857] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49171,78 +70291,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(5089), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1704), 1, - sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, - sym_sym_lit, - STATE(2165), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(312), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6187), 2, sym__ws, sym_comment, - ACTIONS(1702), 3, + ACTIONS(5087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1802), 19, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49262,7 +70382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37530] = 35, + [36992] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49271,78 +70391,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2722), 1, + ACTIONS(6191), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6189), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1612), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1530), 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, + [37127] = 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(5069), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, + anon_sym_POUND_QMARK, + ACTIONS(6053), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6055), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(6057), 1, + anon_sym_SQUOTE, + ACTIONS(6059), 1, + anon_sym_BQUOTE, + ACTIONS(6061), 1, + anon_sym_COMMA_AT, + ACTIONS(6063), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_cl, + STATE(2815), 1, + aux_sym_list_lit_repeat1, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2720), 3, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5067), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1729), 19, + STATE(2998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49362,7 +70582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37665] = 35, + [37262] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49371,78 +70591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1628), 1, + ACTIONS(6195), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2724), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1626), 3, + ACTIONS(6193), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(454), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1795), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1531), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49462,7 +70682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37800] = 35, + [37397] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -49501,19 +70721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2728), 1, + ACTIONS(6199), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49527,22 +70747,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2726), 3, + ACTIONS(6197), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(779), 19, + STATE(528), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49562,7 +70782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37935] = 35, + [37532] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -49601,19 +70821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2732), 1, + ACTIONS(6203), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49627,22 +70847,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2730), 3, + ACTIONS(6201), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(786), 19, + STATE(1839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49662,87 +70882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38070] = 35, + [37667] = 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(4747), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2738), 1, + ACTIONS(6207), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2734), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2736), 3, + ACTIONS(6205), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(180), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1496), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1532), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49762,87 +70982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38205] = 35, + [37802] = 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(5057), 1, + sym_self_referential_reader_macro, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2744), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3039), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2740), 2, - sym__ws, - sym_comment, - ACTIONS(2742), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6067), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5025), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(450), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(445), 19, + STATE(2997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49862,87 +71082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38340] = 35, + [37937] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2748), 1, + ACTIONS(6247), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(6209), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2746), 3, + ACTIONS(6213), 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, + STATE(705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(462), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1692), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49962,7 +71182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38475] = 35, + [38072] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49971,78 +71191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1622), 1, + ACTIONS(6255), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2750), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1620), 3, + ACTIONS(6253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(464), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1792), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1533), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50062,87 +71282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38610] = 35, + [38207] = 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(546), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1578), 1, + ACTIONS(6259), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(2752), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1576), 3, + ACTIONS(6257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(466), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1788), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50162,7 +71382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38745] = 35, + [38342] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50171,78 +71391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, - anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1572), 1, + ACTIONS(6265), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2754), 2, + ACTIONS(6261), 2, sym__ws, sym_comment, - ACTIONS(1570), 3, + ACTIONS(6263), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(469), 3, + STATE(461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1787), 19, + STATE(2716), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50262,7 +71482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38880] = 35, + [38477] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50271,78 +71491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1456), 1, + ACTIONS(6271), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6267), 2, sym__ws, sym_comment, - ACTIONS(1454), 3, + ACTIONS(6269), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1764), 19, + STATE(1535), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50362,87 +71582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39015] = 35, + [38612] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2760), 1, + ACTIONS(5109), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2756), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2758), 3, + ACTIONS(5107), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(461), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(472), 19, + STATE(2563), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50462,87 +71682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39150] = 35, + [38747] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2766), 1, + ACTIONS(6277), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2762), 2, + ACTIONS(6273), 2, sym__ws, sym_comment, - ACTIONS(2764), 3, + ACTIONS(6275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(446), 3, + STATE(706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(805), 19, + STATE(1694), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50562,87 +71782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39285] = 35, + [38882] = 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(4747), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2772), 1, + ACTIONS(6283), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2768), 2, + ACTIONS(6279), 2, sym__ws, sym_comment, - ACTIONS(2770), 3, + ACTIONS(6281), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(447), 3, + STATE(716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(806), 19, + STATE(1537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50662,87 +71882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39420] = 35, + [39017] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2776), 1, + ACTIONS(6289), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6285), 2, sym__ws, sym_comment, - ACTIONS(2774), 3, + ACTIONS(6287), 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, + STATE(708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(307), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1696), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50762,87 +71982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39555] = 35, + [39152] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2782), 1, + ACTIONS(5065), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2778), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2780), 3, + ACTIONS(5063), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(463), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(474), 19, + STATE(2564), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50862,7 +72082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39690] = 35, + [39287] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50871,78 +72091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(2786), 1, + ACTIONS(6295), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6291), 2, sym__ws, sym_comment, - ACTIONS(2784), 3, + ACTIONS(6293), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1728), 19, + STATE(1538), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50962,87 +72182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39825] = 35, + [39422] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2790), 1, + ACTIONS(6301), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6297), 2, sym__ws, sym_comment, - ACTIONS(2788), 3, + ACTIONS(6299), 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, + STATE(709), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(478), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1698), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51062,7 +72282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39960] = 35, + [39557] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51071,78 +72291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1462), 1, + ACTIONS(6307), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2792), 2, + ACTIONS(6303), 2, sym__ws, sym_comment, - ACTIONS(1460), 3, + ACTIONS(6305), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(475), 3, + STATE(725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1759), 19, + STATE(1539), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51162,87 +72382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40095] = 35, + [39692] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2796), 1, + ACTIONS(6313), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6309), 2, sym__ws, sym_comment, - ACTIONS(2794), 3, + ACTIONS(6311), 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, + STATE(710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(480), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51262,7 +72482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40230] = 35, + [39827] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51271,78 +72491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1466), 1, + ACTIONS(6317), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1464), 3, + ACTIONS(6315), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1749), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51362,87 +72582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40365] = 35, + [39962] = 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(4747), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2800), 1, + ACTIONS(6321), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2798), 3, + ACTIONS(6319), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(173), 19, + STATE(1545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51462,7 +72682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40500] = 35, + [40097] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51471,78 +72691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1492), 1, + ACTIONS(6327), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6323), 2, sym__ws, sym_comment, - ACTIONS(1490), 3, + ACTIONS(6325), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1743), 19, + STATE(1546), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51562,7 +72782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40635] = 35, + [40232] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -51601,19 +72821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2806), 1, + ACTIONS(6331), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -51627,22 +72847,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2802), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2804), 3, + ACTIONS(6329), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(172), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1493), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1836), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51662,87 +72882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40770] = 35, + [40367] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2812), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6335), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2808), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2810), 3, + ACTIONS(6333), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(570), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2004), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1767), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51762,7 +72982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40905] = 35, + [40502] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51771,78 +72991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1510), 1, + ACTIONS(6339), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1508), 3, + ACTIONS(6337), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1742), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51862,87 +73082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41040] = 35, + [40637] = 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, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6217), 1, + anon_sym_COLON, + ACTIONS(6219), 1, + anon_sym_COLON_COLON, + ACTIONS(6221), 1, + anon_sym_DQUOTE, + ACTIONS(6223), 1, + aux_sym_sym_lit_token1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, + anon_sym_POUND_QMARK, + ACTIONS(6231), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2816), 1, + ACTIONS(6243), 1, + anon_sym_cl, + ACTIONS(6343), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6245), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2814), 3, + ACTIONS(6251), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6341), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 19, + STATE(1723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51962,7 +73182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41175] = 35, + [40772] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -52001,19 +73221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2820), 1, + ACTIONS(6347), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -52027,22 +73247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2818), 3, + ACTIONS(6345), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1491), 19, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52062,7 +73282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41310] = 35, + [40907] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52071,78 +73291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1520), 1, + ACTIONS(6351), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2822), 2, - sym__ws, - sym_comment, - ACTIONS(1518), 3, + ACTIONS(6349), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(477), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1741), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1724), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52162,7 +73382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41445] = 35, + [41042] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52171,78 +73391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(6355), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1675), 1, + sym_sym_lit, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1884), 3, + ACTIONS(6353), 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, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52262,7 +73482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41580] = 35, + [41177] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52271,78 +73491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1530), 1, + ACTIONS(6359), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2824), 2, - sym__ws, - sym_comment, - ACTIONS(1528), 3, + ACTIONS(6357), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(479), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1739), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1726), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52362,7 +73582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41715] = 35, + [41312] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52371,78 +73591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1582), 1, + ACTIONS(6365), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6361), 2, sym__ws, sym_comment, - ACTIONS(1580), 3, + ACTIONS(6363), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1727), 19, + STATE(1728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52462,7 +73682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41850] = 35, + [41447] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52471,78 +73691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(6371), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1675), 1, + sym_sym_lit, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2826), 2, + ACTIONS(6367), 2, sym__ws, sym_comment, - ACTIONS(1858), 3, + ACTIONS(6369), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(527), 3, + STATE(724), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2306), 19, + STATE(1733), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52562,7 +73782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41985] = 35, + [41582] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52571,78 +73791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1586), 1, + ACTIONS(6377), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6373), 2, sym__ws, sym_comment, - ACTIONS(1584), 3, + ACTIONS(6375), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(730), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1725), 19, + STATE(1735), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52662,7 +73882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42120] = 35, + [41717] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52671,78 +73891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1600), 1, + ACTIONS(6383), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2828), 2, + ACTIONS(6379), 2, sym__ws, sym_comment, - ACTIONS(1598), 3, + ACTIONS(6381), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(482), 3, + STATE(731), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1724), 19, + STATE(1737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52762,7 +73982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42255] = 35, + [41852] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52771,78 +73991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, - anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1632), 1, + ACTIONS(4839), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6385), 2, sym__ws, sym_comment, - ACTIONS(1630), 3, + ACTIONS(4837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1722), 19, + STATE(2571), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52862,7 +74082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42390] = 35, + [41987] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52871,78 +74091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(4747), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1638), 1, + ACTIONS(6389), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1489), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2830), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1636), 3, + ACTIONS(6387), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(484), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1721), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1548), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52962,7 +74182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42525] = 35, + [42122] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52971,78 +74191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(4851), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2832), 3, + ACTIONS(4849), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1172), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2599), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53062,7 +74282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42660] = 35, + [42257] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53071,78 +74291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(274), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(278), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(280), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(282), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(284), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(286), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(288), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(292), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(294), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(296), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(298), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(300), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(302), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(304), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(546), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1642), 1, + ACTIONS(6393), 1, sym_self_referential_reader_macro, - STATE(1801), 1, - sym__bare_set_lit, - STATE(2137), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2165), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(290), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(312), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(316), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(318), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1640), 3, + ACTIONS(6391), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1714), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53162,87 +74382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42795] = 35, + [42392] = 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(1794), 1, - anon_sym_POUND, - ACTIONS(1854), 1, + ACTIONS(6399), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(2836), 2, + ACTIONS(6395), 2, sym__ws, sym_comment, - ACTIONS(1852), 3, + ACTIONS(6397), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(530), 3, + STATE(677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2303), 19, + STATE(533), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53262,87 +74482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42930] = 35, + [42527] = 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(546), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1646), 1, + ACTIONS(6405), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2137), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2165), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(6401), 2, sym__ws, sym_comment, - ACTIONS(1644), 3, + ACTIONS(6403), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1713), 19, + STATE(537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53362,7 +74582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43065] = 35, + [42662] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53371,78 +74591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2842), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(6409), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2838), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2840), 3, + ACTIONS(6407), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(584), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2005), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53462,7 +74682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43200] = 35, + [42797] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53471,78 +74691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(6415), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1675), 1, + sym_sym_lit, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2844), 2, + ACTIONS(6411), 2, sym__ws, sym_comment, - ACTIONS(1846), 3, + ACTIONS(6413), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(536), 3, + STATE(735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2302), 19, + STATE(1705), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53562,7 +74782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43335] = 35, + [42932] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53571,78 +74791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2850), 1, + ACTIONS(5005), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2846), 2, + ACTIONS(6417), 2, sym__ws, sym_comment, - ACTIONS(2848), 3, + ACTIONS(5003), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(595), 3, + STATE(695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(884), 19, + STATE(2574), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53662,7 +74882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43470] = 35, + [43067] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53671,78 +74891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2856), 1, + ACTIONS(6421), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2852), 2, - sym__ws, - sym_comment, - ACTIONS(2854), 3, + ACTIONS(6419), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(504), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1203), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1637), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53762,7 +74982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43605] = 35, + [43202] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53771,78 +74991,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2860), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(6425), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(4763), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(4785), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6423), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1612), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1550), 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, + [43337] = 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(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4755), 1, + anon_sym_COLON_COLON, + ACTIONS(4757), 1, + anon_sym_DQUOTE, + ACTIONS(4759), 1, + aux_sym_sym_lit_token1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, + anon_sym_POUND_QMARK, + ACTIONS(4767), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(4769), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(4771), 1, + anon_sym_SQUOTE, + ACTIONS(4773), 1, + anon_sym_BQUOTE, + ACTIONS(4775), 1, + anon_sym_COMMA_AT, + ACTIONS(4777), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(6431), 1, + sym_self_referential_reader_macro, + STATE(1489), 1, + sym_sym_lit, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, + aux_sym_list_lit_repeat1, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6427), 2, sym__ws, sym_comment, - ACTIONS(2858), 3, + ACTIONS(6429), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2006), 19, + STATE(1551), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53862,87 +75182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43740] = 35, + [43472] = 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(4747), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(2866), 1, + ACTIONS(6437), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2862), 2, + ACTIONS(6433), 2, sym__ws, sym_comment, - ACTIONS(2864), 3, + ACTIONS(6435), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(458), 3, + STATE(757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(292), 19, + STATE(1552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53962,7 +75282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43875] = 35, + [43607] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53971,78 +75291,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2872), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5021), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2868), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2870), 3, + ACTIONS(5019), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(589), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2007), 19, + STATE(2552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54062,7 +75382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44010] = 35, + [43742] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -54101,19 +75421,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2876), 1, + ACTIONS(6443), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -54127,22 +75447,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6439), 2, sym__ws, sym_comment, - ACTIONS(2874), 3, + ACTIONS(6441), 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, + STATE(923), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1490), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54162,7 +75482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44145] = 35, + [43877] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54171,78 +75491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(2168), 1, + ACTIONS(6447), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1675), 1, + sym_sym_lit, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2878), 2, - sym__ws, - sym_comment, - ACTIONS(2166), 3, + ACTIONS(6445), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(414), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2327), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1636), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54262,7 +75582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44280] = 35, + [44012] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54271,78 +75591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, + aux_sym_num_lit_token1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2882), 1, + ACTIONS(6243), 1, + anon_sym_cl, + ACTIONS(6451), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6245), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2880), 3, + ACTIONS(6251), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6449), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2008), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1635), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54362,7 +75682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44415] = 35, + [44147] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54371,78 +75691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2888), 1, + ACTIONS(6457), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2169), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2884), 2, + ACTIONS(6453), 2, sym__ws, sym_comment, - ACTIONS(2886), 3, + ACTIONS(6455), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(609), 3, + STATE(738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(879), 19, + STATE(1634), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54462,7 +75782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44550] = 35, + [44282] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54471,78 +75791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2894), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(6461), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2890), 2, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2892), 3, + ACTIONS(6459), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(594), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2009), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1581), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54562,7 +75882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44685] = 35, + [44417] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54571,78 +75891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(2662), 1, + ACTIONS(6467), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1675), 1, + sym_sym_lit, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2896), 2, + ACTIONS(6463), 2, sym__ws, sym_comment, - ACTIONS(2660), 3, + ACTIONS(6465), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(238), 3, + STATE(744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1857), 19, + STATE(1633), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54662,7 +75982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44820] = 35, + [44552] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54671,78 +75991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2902), 1, + ACTIONS(6471), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2898), 2, - sym__ws, - sym_comment, - ACTIONS(2900), 3, + ACTIONS(6469), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(510), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1210), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1624), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54762,7 +76082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44955] = 35, + [44687] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54771,78 +76091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2908), 1, + ACTIONS(6475), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2904), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2906), 3, + ACTIONS(6473), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(515), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1211), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1559), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54862,7 +76182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45090] = 35, + [44822] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54871,78 +76191,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(6481), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6477), 2, sym__ws, sym_comment, - ACTIONS(2910), 3, + ACTIONS(6479), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(422), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1988), 19, + STATE(2706), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54962,87 +76282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45225] = 35, + [44957] = 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(6211), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2816), 1, + ACTIONS(6485), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2814), 3, + ACTIONS(6483), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1489), 19, + STATE(1627), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55062,7 +76382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45360] = 35, + [45092] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55071,78 +76391,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2918), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4847), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2914), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2916), 3, + ACTIONS(4845), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(601), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2012), 19, + STATE(2577), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55162,7 +76482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45495] = 35, + [45227] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55171,78 +76491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2924), 1, + ACTIONS(6491), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2920), 2, + ACTIONS(6487), 2, sym__ws, sym_comment, - ACTIONS(2922), 3, + ACTIONS(6489), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(518), 3, + STATE(767), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1216), 19, + STATE(1560), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55262,7 +76582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45630] = 35, + [45362] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55271,78 +76591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2928), 1, + ACTIONS(6497), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6493), 2, sym__ws, sym_comment, - ACTIONS(2926), 3, + ACTIONS(6495), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(748), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1253), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1626), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55362,87 +76682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45765] = 35, + [45497] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2934), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6503), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2930), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6499), 2, sym__ws, sym_comment, - ACTIONS(2932), 3, + ACTIONS(6501), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(606), 3, + STATE(630), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2013), 19, + STATE(1859), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55462,7 +76782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45900] = 35, + [45632] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55471,78 +76791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2940), 1, + ACTIONS(6509), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2936), 2, + ACTIONS(6505), 2, sym__ws, sym_comment, - ACTIONS(2938), 3, + ACTIONS(6507), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(616), 3, + STATE(420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(877), 19, + STATE(2709), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55562,7 +76882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46035] = 35, + [45767] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55571,78 +76891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, + aux_sym_num_lit_token1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2946), 1, + ACTIONS(6243), 1, + anon_sym_cl, + ACTIONS(6513), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6245), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2942), 2, - sym__ws, - sym_comment, - ACTIONS(2944), 3, + ACTIONS(6251), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6511), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(611), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2014), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1695), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55662,7 +76982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46170] = 35, + [45902] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55671,78 +76991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2950), 1, + ACTIONS(6519), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6515), 2, sym__ws, sym_comment, - ACTIONS(2948), 3, + ACTIONS(6517), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1265), 19, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1679), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55762,87 +77082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46305] = 35, + [46037] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2562), 1, + ACTIONS(6525), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6521), 2, sym__ws, sym_comment, - ACTIONS(2560), 3, + ACTIONS(6523), 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, + STATE(418), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1488), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55862,7 +77182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46440] = 35, + [46172] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55871,78 +77191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2954), 1, + ACTIONS(6531), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6527), 2, sym__ws, sym_comment, - ACTIONS(2952), 3, + ACTIONS(6529), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1267), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55962,7 +77282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46575] = 35, + [46307] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55971,78 +77291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, + aux_sym_num_lit_token1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2958), 1, + ACTIONS(6243), 1, + anon_sym_cl, + ACTIONS(6535), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6245), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2956), 3, + ACTIONS(6251), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6533), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2015), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56062,7 +77382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46710] = 35, + [46442] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56071,78 +77391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(6211), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(2964), 1, + ACTIONS(6539), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(1675), 1, sym_sym_lit, - STATE(2169), 1, + STATE(1677), 1, + sym__bare_set_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2960), 2, - sym__ws, - sym_comment, - ACTIONS(2962), 3, + ACTIONS(6537), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(644), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(873), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56162,7 +77482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46845] = 35, + [46577] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56171,78 +77491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(190), 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, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(2968), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(6545), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6541), 2, sym__ws, sym_comment, - ACTIONS(2966), 3, + ACTIONS(6543), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(413), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2424), 19, + STATE(4), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56262,7 +77582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46980] = 35, + [46712] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56271,78 +77591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2972), 1, + ACTIONS(5297), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6547), 2, sym__ws, sym_comment, - ACTIONS(2970), 3, + ACTIONS(5295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(772), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2017), 19, + STATE(2935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56362,7 +77682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47115] = 35, + [46847] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56371,178 +77691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(5035), 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(690), 1, - anon_sym_SQUOTE, - ACTIONS(692), 1, - anon_sym_BQUOTE, - ACTIONS(694), 1, - anon_sym_COMMA_AT, - ACTIONS(696), 1, - anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1444), 1, + ACTIONS(5175), 1, anon_sym_POUND, - ACTIONS(2976), 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(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, - sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - 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(706), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2974), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1229), 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, - [47250] = 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, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 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, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(5291), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2978), 2, + ACTIONS(6549), 2, sym__ws, sym_comment, - ACTIONS(2980), 3, + ACTIONS(5289), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(618), 3, + STATE(774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2010), 19, + STATE(2936), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56562,7 +77782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47385] = 35, + [46982] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56571,78 +77791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(6555), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(1482), 1, + sym__bare_set_lit, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2984), 2, + ACTIONS(6551), 2, sym__ws, sym_comment, - ACTIONS(1830), 3, + ACTIONS(6553), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(539), 3, + STATE(410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2348), 19, + STATE(60), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56662,7 +77882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47520] = 35, + [47117] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56671,78 +77891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2988), 1, + ACTIONS(4965), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6557), 2, sym__ws, sym_comment, - ACTIONS(2986), 3, + ACTIONS(4963), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1215), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2584), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56762,7 +77982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47655] = 35, + [47252] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56771,78 +77991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(2994), 1, + ACTIONS(5083), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2990), 2, + ACTIONS(6559), 2, sym__ws, sym_comment, - ACTIONS(2992), 3, + ACTIONS(5081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(544), 3, + STATE(728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1228), 19, + STATE(2587), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56862,7 +78082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47790] = 35, + [47387] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56871,78 +78091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3000), 1, + ACTIONS(6563), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2996), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2998), 3, + ACTIONS(6561), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(558), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1200), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1425), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56962,7 +78182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47925] = 35, + [47522] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56971,78 +78191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3006), 1, + ACTIONS(6567), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1175), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3002), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3004), 3, + ACTIONS(6565), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(561), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1201), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1561), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57062,7 +78282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48060] = 35, + [47657] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57071,78 +78291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, - aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(3012), 1, + ACTIONS(5285), 1, sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, - sym__bare_set_lit, - STATE(2171), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3008), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6569), 2, sym__ws, sym_comment, - ACTIONS(3010), 3, + ACTIONS(5283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(433), 3, + STATE(775), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1798), 19, + STATE(2940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57162,7 +78382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48195] = 35, + [47792] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57171,78 +78391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(3018), 1, + ACTIONS(4827), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1747), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3014), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3016), 3, + ACTIONS(4805), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(435), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1784), 19, + STATE(2589), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57262,7 +78482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48330] = 35, + [47927] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57271,78 +78491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, - anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(3024), 1, + ACTIONS(6573), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1747), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3020), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3022), 3, + ACTIONS(6571), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(442), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1782), 19, + STATE(2720), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57362,7 +78582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48465] = 35, + [48062] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57371,78 +78591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(776), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(3030), 1, + ACTIONS(6579), 1, sym_self_referential_reader_macro, - STATE(1745), 1, + STATE(1489), 1, sym_sym_lit, - STATE(1747), 1, + STATE(1589), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3026), 2, + ACTIONS(6575), 2, sym__ws, sym_comment, - ACTIONS(3028), 3, + ACTIONS(6577), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(444), 3, + STATE(668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1780), 19, + STATE(1562), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57462,87 +78682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48600] = 35, + [48197] = 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(776), 1, - aux_sym_num_lit_token1, - ACTIONS(778), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(780), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(782), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(788), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(790), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(796), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(798), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(800), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5433), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(802), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(804), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(806), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(808), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_cl, - ACTIONS(1562), 1, - anon_sym_POUND, - ACTIONS(3036), 1, - sym_self_referential_reader_macro, - STATE(1745), 1, - sym_sym_lit, - STATE(1747), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2171), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(794), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(812), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(816), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(818), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3032), 2, + ACTIONS(6581), 2, sym__ws, sym_comment, - ACTIONS(3034), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5431), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(460), 3, + STATE(777), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1746), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1778), 19, + STATE(1867), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57562,7 +78782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48735] = 35, + [48332] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57571,78 +78791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1792), 1, + ACTIONS(4833), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1790), 3, + ACTIONS(4831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(2590), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57662,7 +78882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48870] = 35, + [48467] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57671,78 +78891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3042), 1, + ACTIONS(6603), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3038), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3040), 3, + ACTIONS(6601), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1282), 19, + STATE(2675), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57762,87 +78982,187 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49005] = 35, + [48602] = 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(472), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5449), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6589), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(6591), 1, + anon_sym_SQUOTE, + ACTIONS(6593), 1, + anon_sym_BQUOTE, + ACTIONS(6595), 1, + anon_sym_COMMA_AT, + ACTIONS(6597), 1, + anon_sym_COMMA, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, + aux_sym_list_lit_repeat1, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6605), 2, + sym__ws, + sym_comment, + ACTIONS(5447), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(780), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1866), 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, + [48737] = 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(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1788), 1, + ACTIONS(6609), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3044), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1786), 3, + ACTIONS(6607), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(562), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2283), 19, + STATE(2745), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57862,7 +79182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49140] = 35, + [48872] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57871,78 +79191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(4747), 1, + anon_sym_POUND, + ACTIONS(4751), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4779), 1, anon_sym_cl, - ACTIONS(1764), 1, + ACTIONS(6613), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1489), 1, + sym_sym_lit, + STATE(1589), 1, + sym__bare_set_lit, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4781), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(4787), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1762), 3, + ACTIONS(6611), 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, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2272), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1568), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57962,13 +79282,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49275] = 35, + [49007] = 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, @@ -57987,62 +79303,66 @@ 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(3048), 1, + ACTIONS(5993), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(6591), 1, + anon_sym_SQUOTE, + ACTIONS(6593), 1, + anon_sym_BQUOTE, + ACTIONS(6595), 1, + anon_sym_COMMA_AT, + ACTIONS(6597), 1, + anon_sym_COMMA, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3046), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5991), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(204), 19, + STATE(1860), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58062,7 +79382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49410] = 35, + [49142] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58071,78 +79391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3052), 1, + ACTIONS(4871), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6615), 2, sym__ws, sym_comment, - ACTIONS(3050), 3, + ACTIONS(4869), 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, + STATE(739), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1144), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2601), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58162,7 +79482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49545] = 35, + [49277] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58171,78 +79491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1794), 1, - anon_sym_POUND, - ACTIONS(2162), 1, + ACTIONS(4879), 1, sym_self_referential_reader_macro, - STATE(2168), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3054), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2160), 3, + ACTIONS(4877), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(419), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2329), 19, + STATE(2602), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58262,7 +79582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49680] = 35, + [49412] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58271,178 +79591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3058), 1, + ACTIONS(6619), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3056), 3, + ACTIONS(6617), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1134), 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, - [49815] = 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(49), 1, - anon_sym_cl, - ACTIONS(3062), 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(3060), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(197), 19, + STATE(2723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58462,7 +79682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49950] = 35, + [49547] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58471,78 +79691,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(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(1746), 1, + ACTIONS(5263), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1744), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(2979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58562,7 +79782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50085] = 35, + [49682] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -58601,19 +79821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2548), 1, + ACTIONS(6625), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -58627,22 +79847,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6621), 2, sym__ws, sym_comment, - ACTIONS(2546), 3, + ACTIONS(6623), 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, + STATE(884), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1487), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58662,7 +79882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50220] = 35, + [49817] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58671,78 +79891,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(5029), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, - anon_sym_cl, - ACTIONS(3068), 1, + ACTIONS(5259), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3064), 2, - sym__ws, - sym_comment, - ACTIONS(3066), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(653), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(872), 19, + STATE(2974), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58762,7 +79982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50355] = 35, + [49952] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58771,78 +79991,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(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(1728), 1, + ACTIONS(5255), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1726), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2270), 19, + STATE(2973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58862,7 +80082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50490] = 35, + [50087] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58871,78 +80091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1686), 1, + ACTIONS(6629), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3070), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1684), 3, + ACTIONS(6627), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(563), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2269), 19, + STATE(2729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58962,13 +80182,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50625] = 35, + [50222] = 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, @@ -58987,62 +80203,66 @@ 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(3076), 1, + ACTIONS(6335), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(6591), 1, + anon_sym_SQUOTE, + ACTIONS(6593), 1, + anon_sym_BQUOTE, + ACTIONS(6595), 1, + anon_sym_COMMA_AT, + ACTIONS(6597), 1, + anon_sym_COMMA, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3072), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3074), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6333), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(554), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(519), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1767), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59062,87 +80282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50760] = 35, + [50357] = 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(1680), 1, + ACTIONS(6633), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(3078), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1678), 3, + ACTIONS(6631), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(600), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2268), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(555), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59162,7 +80382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50895] = 35, + [50492] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59171,78 +80391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(6039), 1, + anon_sym_POUND, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(1708), 1, + ACTIONS(6639), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2380), 1, + STATE(3039), 1, sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6067), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6635), 2, sym__ws, sym_comment, - ACTIONS(1706), 3, + ACTIONS(6637), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(645), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(2831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59262,87 +80482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51030] = 35, + [50627] = 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(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6347), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3084), 1, - sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3082), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6345), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1185), 19, + STATE(1833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59362,7 +80582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51165] = 35, + [50762] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59371,78 +80591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(177), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(3090), 1, + ACTIONS(6643), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3086), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3088), 3, + ACTIONS(6641), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(532), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(968), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(5), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59462,7 +80682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51300] = 35, + [50897] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59471,178 +80691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3096), 1, + ACTIONS(5243), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, - sym__bare_set_lit, - STATE(2160), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3092), 2, - sym__ws, - sym_comment, - ACTIONS(3094), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(577), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1186), 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, - [51435] = 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, - anon_sym_POUND, - ACTIONS(194), 1, - aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_BQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA_AT, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3100), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 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(215), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6645), 2, sym__ws, sym_comment, - ACTIONS(3098), 3, + ACTIONS(5241), 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, + STATE(795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1042), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59662,7 +80782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51570] = 35, + [51032] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -59701,19 +80821,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3106), 1, + ACTIONS(6651), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -59727,22 +80847,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3102), 2, + ACTIONS(6647), 2, sym__ws, sym_comment, - ACTIONS(3104), 3, + ACTIONS(6649), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(531), 3, + STATE(778), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(183), 19, + STATE(560), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59762,87 +80882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51705] = 35, + [51167] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3112), 1, + ACTIONS(6655), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3108), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3110), 3, + ACTIONS(6653), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(535), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(181), 19, + STATE(2674), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59862,7 +80982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51840] = 35, + [51302] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59871,78 +80991,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(5029), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3116), 1, + ACTIONS(5237), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6657), 2, sym__ws, sym_comment, - ACTIONS(3114), 3, + ACTIONS(5235), 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, + STATE(798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(974), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2944), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59962,7 +81082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51975] = 35, + [51437] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59971,78 +81091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3122), 1, + ACTIONS(6661), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3118), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3120), 3, + ACTIONS(6659), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(534), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(975), 19, + STATE(2740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60062,87 +81182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52110] = 35, + [51572] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3126), 1, + ACTIONS(6667), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6663), 2, sym__ws, sym_comment, - ACTIONS(3124), 3, + ACTIONS(6665), 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, + STATE(975), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(169), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60162,7 +81282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52245] = 35, + [51707] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60171,78 +81291,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(5029), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3130), 1, + ACTIONS(5231), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6669), 2, sym__ws, sym_comment, - ACTIONS(3128), 3, + ACTIONS(5229), 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, + STATE(799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(977), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60262,7 +81382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52380] = 35, + [51842] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -60301,19 +81421,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3134), 1, + ACTIONS(6675), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -60327,22 +81447,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6671), 2, sym__ws, sym_comment, - ACTIONS(3132), 3, + ACTIONS(6673), 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, + STATE(943), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(546), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1826), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60362,87 +81482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52515] = 35, + [51977] = 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2876), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(6679), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2874), 3, + ACTIONS(6677), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1490), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2693), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60462,7 +81582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52650] = 35, + [52112] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60471,78 +81591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3138), 1, + ACTIONS(6685), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6681), 2, sym__ws, sym_comment, - ACTIONS(3136), 3, + ACTIONS(6683), 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, + STATE(972), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(983), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60562,87 +81682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52785] = 35, + [52247] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1656), 1, + ACTIONS(6691), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6687), 2, sym__ws, sym_comment, - ACTIONS(1654), 3, + ACTIONS(6689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2279), 19, + STATE(1824), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60662,7 +81782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52920] = 35, + [52382] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60671,78 +81791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3142), 1, + ACTIONS(6697), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6693), 2, sym__ws, sym_comment, - ACTIONS(3140), 3, + ACTIONS(6695), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(970), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1188), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2735), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60762,9 +81882,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53055] = 35, + [52517] = 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, @@ -60783,66 +81907,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1550), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6703), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3144), 2, + ACTIONS(6699), 2, sym__ws, sym_comment, - ACTIONS(1548), 3, + ACTIONS(6701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(705), 3, + STATE(946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1513), 19, + STATE(1825), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60862,87 +81982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53190] = 35, + [52652] = 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(5029), 1, + anon_sym_COLON, + ACTIONS(5031), 1, + anon_sym_COLON_COLON, + ACTIONS(5033), 1, + anon_sym_DQUOTE, + ACTIONS(5035), 1, + aux_sym_sym_lit_token1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3150), 1, + ACTIONS(5219), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3146), 2, - sym__ws, - sym_comment, - ACTIONS(3148), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5217), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(552), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(202), 19, + STATE(2948), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60962,7 +82082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53325] = 35, + [52787] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60971,78 +82091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3154), 1, + ACTIONS(6707), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3152), 3, + ACTIONS(6705), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1191), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61062,7 +82182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53460] = 35, + [52922] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61071,78 +82191,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(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(1594), 1, + ACTIONS(5215), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6709), 2, sym__ws, sym_comment, - ACTIONS(1592), 3, + ACTIONS(5213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(2988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61162,7 +82282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53595] = 35, + [53057] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61171,78 +82291,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(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_cl, - ACTIONS(1502), 1, + ACTIONS(5209), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1500), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2265), 19, + STATE(2956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61262,87 +82382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53730] = 35, + [53192] = 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(5029), 1, + anon_sym_COLON, + ACTIONS(5031), 1, + anon_sym_COLON_COLON, + ACTIONS(5033), 1, + anon_sym_DQUOTE, + ACTIONS(5035), 1, + aux_sym_sym_lit_token1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2820), 1, + ACTIONS(5205), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2146), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2818), 3, + ACTIONS(5203), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1491), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61362,87 +82482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53865] = 35, + [53327] = 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(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3158), 1, + ACTIONS(6713), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3156), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6711), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1192), 19, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61462,87 +82582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54000] = 35, + [53462] = 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(664), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3164), 1, + ACTIONS(6691), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3160), 2, + ACTIONS(6715), 2, sym__ws, sym_comment, - ACTIONS(3162), 3, + ACTIONS(6689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(579), 3, + STATE(948), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1193), 19, + STATE(1824), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61562,87 +82682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54135] = 35, + [53597] = 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(1498), 1, + ACTIONS(6721), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(3166), 2, + ACTIONS(6717), 2, sym__ws, sym_comment, - ACTIONS(1496), 3, + ACTIONS(6719), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(610), 3, + STATE(956), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2264), 19, + STATE(954), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61662,7 +82782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54270] = 35, + [53732] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61671,78 +82791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(2741), 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, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(644), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(646), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(648), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(650), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(652), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(654), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1470), 1, - anon_sym_POUND, - ACTIONS(3172), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(6727), 1, sym_self_referential_reader_macro, - STATE(2142), 1, + STATE(1482), 1, + sym__bare_set_lit, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(656), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3168), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6723), 2, sym__ws, sym_comment, - ACTIONS(3170), 3, + ACTIONS(6725), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(215), 3, + STATE(756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2127), 19, + STATE(1438), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61762,7 +82882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54405] = 35, + [53867] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61771,78 +82891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3178), 1, + ACTIONS(4899), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3174), 2, + ACTIONS(6729), 2, sym__ws, sym_comment, - ACTIONS(3176), 3, + ACTIONS(4897), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(550), 3, + STATE(759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(991), 19, + STATE(2623), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61862,7 +82982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54540] = 35, + [54002] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61871,78 +82991,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3182), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4909), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6731), 2, sym__ws, sym_comment, - ACTIONS(3180), 3, + ACTIONS(4907), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2030), 19, + STATE(2626), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61962,7 +83082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54675] = 35, + [54137] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61971,78 +83091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(4915), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6733), 2, sym__ws, sym_comment, - ACTIONS(1888), 3, + ACTIONS(4913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(770), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1952), 19, + STATE(2633), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62062,7 +83182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54810] = 35, + [54272] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62071,78 +83191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5167), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3188), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3184), 2, + ACTIONS(6735), 2, sym__ws, sym_comment, - ACTIONS(3186), 3, + ACTIONS(5165), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(655), 3, + STATE(815), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2033), 19, + STATE(2977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62162,7 +83282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54945] = 35, + [54407] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62171,78 +83291,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(2662), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(6739), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3190), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2660), 3, + ACTIONS(6737), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(253), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1857), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1445), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62262,7 +83382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55080] = 35, + [54542] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62271,78 +83391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5161), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3196), 1, - sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, - sym__bare_set_lit, - STATE(2160), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3192), 2, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6741), 2, sym__ws, sym_comment, - ACTIONS(3194), 3, + ACTIONS(5159), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(602), 3, + STATE(818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1196), 19, + STATE(2971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62362,7 +83482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55215] = 35, + [54677] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62371,78 +83491,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3202), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(6745), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3198), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3200), 3, + ACTIONS(6743), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(660), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2034), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1446), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62462,9 +83582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55350] = 35, + [54812] = 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, @@ -62483,66 +83607,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2806), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6751), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3204), 2, + ACTIONS(6747), 2, sym__ws, sym_comment, - ACTIONS(2804), 3, + ACTIONS(6749), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, + STATE(969), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1493), 19, + STATE(973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62562,7 +83682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55485] = 35, + [54947] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62571,78 +83691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3208), 1, + ACTIONS(4927), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3206), 3, + ACTIONS(4925), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1209), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2638), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62662,7 +83782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55620] = 35, + [55082] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62671,78 +83791,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5149), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3214), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3210), 2, - sym__ws, - sym_comment, - ACTIONS(3212), 3, + ACTIONS(5147), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(666), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2035), 19, + STATE(2926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62762,7 +83882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55755] = 35, + [55217] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62771,78 +83891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3218), 1, + ACTIONS(4935), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3216), 3, + ACTIONS(4933), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1213), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2640), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62862,87 +83982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55890] = 35, + [55352] = 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(5029), 1, + anon_sym_COLON, + ACTIONS(5031), 1, + anon_sym_COLON_COLON, + ACTIONS(5033), 1, + anon_sym_DQUOTE, + ACTIONS(5035), 1, + aux_sym_sym_lit_token1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5145), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(3224), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, - sym__bare_set_lit, - STATE(2178), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3220), 2, - sym__ws, - sym_comment, - ACTIONS(3222), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(636), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(574), 19, + STATE(2920), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62962,7 +84082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56025] = 35, + [55487] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62971,78 +84091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3230), 1, + ACTIONS(4943), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3226), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3228), 3, + ACTIONS(4941), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(639), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1214), 19, + STATE(2641), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63062,7 +84182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56160] = 35, + [55622] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63071,78 +84191,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5137), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1474), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2380), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3232), 2, + ACTIONS(6753), 2, sym__ws, sym_comment, - ACTIONS(1472), 3, + ACTIONS(5135), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(543), 3, + STATE(820), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2262), 19, + STATE(2910), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63162,7 +84282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56295] = 35, + [55757] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63171,78 +84291,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(5029), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5131), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3238), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3234), 2, - sym__ws, - sym_comment, - ACTIONS(3236), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5129), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(553), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(992), 19, + STATE(2908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63262,7 +84382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56430] = 35, + [55892] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63271,78 +84391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5089), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3242), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6755), 2, sym__ws, sym_comment, - ACTIONS(3240), 3, + ACTIONS(5087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(821), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2036), 19, + STATE(2919), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63362,7 +84482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56565] = 35, + [56027] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63371,78 +84491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5069), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3248), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3244), 2, - sym__ws, - sym_comment, - ACTIONS(3246), 3, + ACTIONS(5067), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(675), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2037), 19, + STATE(2998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63462,7 +84582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56700] = 35, + [56162] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63471,78 +84591,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(5029), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5057), 1, + sym_self_referential_reader_macro, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3252), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3250), 3, + ACTIONS(5183), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(5201), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5025), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(962), 19, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63562,7 +84682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56835] = 35, + [56297] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -63587,33 +84707,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(5095), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6597), 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, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -63621,28 +84741,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3254), 2, + ACTIONS(6757), 2, sym__ws, sym_comment, - ACTIONS(2736), 3, + ACTIONS(5093), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(652), 3, + STATE(832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1496), 19, + STATE(1870), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63662,7 +84782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56970] = 35, + [56432] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63671,178 +84791,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(5029), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_BQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA_AT, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(3258), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 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(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3256), 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(996), 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, - [57105] = 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, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 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, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3262), 1, + ACTIONS(6763), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3077), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6759), 2, sym__ws, sym_comment, - ACTIONS(3260), 3, + ACTIONS(6761), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2038), 19, + STATE(3092), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63862,87 +84882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57240] = 35, + [56567] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3268), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6767), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3264), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3266), 3, + ACTIONS(6765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(679), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2039), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(586), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63962,87 +84982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57375] = 35, + [56702] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5121), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3272), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6769), 2, sym__ws, sym_comment, - ACTIONS(3270), 3, + ACTIONS(5119), 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, + STATE(835), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(998), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1869), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64062,7 +85082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57510] = 35, + [56837] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -64087,33 +85107,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(5427), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2714), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -64121,28 +85141,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3274), 2, + ACTIONS(6771), 2, sym__ws, sym_comment, - ACTIONS(2712), 3, + ACTIONS(5425), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(667), 3, + STATE(837), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1497), 19, + STATE(1868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64162,87 +85182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57645] = 35, + [56972] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3280), 1, + ACTIONS(6775), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3276), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3278), 3, + ACTIONS(6773), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(556), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1005), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(589), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64262,7 +85282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57780] = 35, + [57107] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64271,78 +85291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6077), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3284), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6777), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3282), 3, + ACTIONS(6075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2040), 19, + STATE(2811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64362,7 +85382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57915] = 35, + [57242] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64371,78 +85391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(2728), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(3288), 1, + ACTIONS(6803), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3286), 3, + ACTIONS(6801), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(846), 19, + STATE(69), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64462,7 +85482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58050] = 35, + [57377] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64471,78 +85491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6087), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3294), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3290), 2, + ACTIONS(6805), 2, sym__ws, sym_comment, - ACTIONS(3292), 3, + ACTIONS(6085), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(684), 3, + STATE(841), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2041), 19, + STATE(2801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64562,7 +85582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58185] = 35, + [57512] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64571,78 +85591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6091), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3300), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3296), 2, - sym__ws, - sym_comment, - ACTIONS(3298), 3, + ACTIONS(6089), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(686), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2042), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64662,87 +85682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58320] = 35, + [57647] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6203), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3304), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3302), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6201), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1007), 19, + STATE(1839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64762,87 +85782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58455] = 35, + [57782] = 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(604), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1488), 1, + ACTIONS(6811), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6807), 2, sym__ws, sym_comment, - ACTIONS(1486), 3, + ACTIONS(6809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(836), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(655), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64862,7 +85882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58590] = 35, + [57917] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64871,78 +85891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(474), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1488), 1, + ACTIONS(5953), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2454), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(490), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(508), 2, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1486), 3, + ACTIONS(5951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2263), 19, + STATE(2511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64962,87 +85982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58725] = 35, + [58052] = 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(47), 1, - sym_block_comment, - ACTIONS(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6259), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3308), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3306), 3, + ACTIONS(6257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2043), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65062,187 +86082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58860] = 35, + [58187] = 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(664), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3312), 1, + ACTIONS(6815), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3310), 3, + ACTIONS(6813), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1223), 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, - [58995] = 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(3318), 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(3314), 2, - sym__ws, - sym_comment, - ACTIONS(3316), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(691), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2044), 19, + STATE(661), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65262,13 +86182,9 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59130] = 35, + [58322] = 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, @@ -65287,62 +86203,66 @@ 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(3322), 1, + ACTIONS(6331), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(6591), 1, + anon_sym_SQUOTE, + ACTIONS(6593), 1, + anon_sym_BQUOTE, + ACTIONS(6595), 1, + anon_sym_COMMA_AT, + ACTIONS(6597), 1, + anon_sym_COMMA, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3320), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6329), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(706), 19, + STATE(1836), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65362,7 +86282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59265] = 35, + [58457] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65371,78 +86291,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(6041), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(478), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(492), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(494), 1, + ACTIONS(6111), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(496), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(498), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(500), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(502), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(504), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(506), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1474), 1, - sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3324), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1472), 3, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(613), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2262), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65462,87 +86382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59400] = 35, + [58592] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3328), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6821), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6817), 2, sym__ws, sym_comment, - ACTIONS(3326), 3, + ACTIONS(6819), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2047), 19, + STATE(666), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65562,7 +86482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59535] = 35, + [58727] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -65601,19 +86521,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3332), 1, + ACTIONS(6827), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -65627,22 +86547,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6823), 2, sym__ws, sym_comment, - ACTIONS(3330), 3, + ACTIONS(6825), 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, + STATE(824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(699), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(595), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65662,7 +86582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59670] = 35, + [58862] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65671,78 +86591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6119), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3338), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3334), 2, - sym__ws, - sym_comment, - ACTIONS(3336), 3, + ACTIONS(6117), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(696), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2048), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65762,87 +86682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59805] = 35, + [58997] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3342), 1, + ACTIONS(6833), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(6829), 2, sym__ws, sym_comment, - ACTIONS(3340), 3, + ACTIONS(6831), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(843), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(667), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65862,87 +86782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59940] = 35, + [59132] = 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(1656), 1, + ACTIONS(6839), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(1450), 2, + ACTIONS(6835), 2, sym__ws, sym_comment, - ACTIONS(1654), 3, + ACTIONS(6837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2279), 19, + STATE(1863), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65962,7 +86882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60075] = 35, + [59267] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65971,78 +86891,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3346), 1, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5345), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4813), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(4829), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3344), 3, + ACTIONS(5343), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2049), 19, + STATE(2537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66062,7 +86982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60210] = 35, + [59402] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66071,78 +86991,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3352), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(6845), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3348), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6841), 2, sym__ws, sym_comment, - ACTIONS(3350), 3, + ACTIONS(6843), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(701), 3, + STATE(810), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2050), 19, + STATE(1465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66162,87 +87082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60345] = 35, + [59537] = 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(1708), 1, + ACTIONS(6849), 1, sym_self_referential_reader_macro, - ACTIONS(1794), 1, - anon_sym_POUND, - STATE(2168), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2454), 1, - sym_sym_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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1706), 3, + ACTIONS(6847), 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, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2280), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66262,7 +87182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60480] = 35, + [59672] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66271,78 +87191,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3358), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4999), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3354), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(6851), 2, sym__ws, sym_comment, - ACTIONS(3356), 3, + ACTIONS(4997), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(703), 3, + STATE(812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2051), 19, + STATE(2585), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66362,7 +87282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60615] = 35, + [59807] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66371,78 +87291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3364), 1, + ACTIONS(5011), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3360), 2, + ACTIONS(6853), 2, sym__ws, sym_comment, - ACTIONS(3362), 3, + ACTIONS(5009), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(586), 3, + STATE(814), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1017), 19, + STATE(2575), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66462,87 +87382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60750] = 35, + [59942] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3368), 1, + ACTIONS(6857), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3366), 3, + ACTIONS(6855), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(842), 19, + STATE(674), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66562,7 +87482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60885] = 35, + [60077] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66571,78 +87491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(190), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3374), 1, + ACTIONS(5017), 1, sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3370), 2, + ACTIONS(6859), 2, sym__ws, sym_comment, - ACTIONS(3372), 3, + ACTIONS(5015), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, + STATE(816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1018), 19, + STATE(2572), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66662,87 +87582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61020] = 35, + [60212] = 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(47), 1, - sym_block_comment, - ACTIONS(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6443), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3378), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6861), 2, sym__ws, sym_comment, - ACTIONS(3376), 3, + ACTIONS(6441), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(858), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2052), 19, + STATE(1831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66762,87 +87682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61155] = 35, + [60347] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3384), 1, + ACTIONS(6675), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3380), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6863), 2, sym__ws, sym_comment, - ACTIONS(3382), 3, + ACTIONS(6673), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(591), 3, + STATE(863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1019), 19, + STATE(1826), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66862,87 +87782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61290] = 35, + [60482] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3390), 1, + ACTIONS(6869), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3386), 2, + ACTIONS(6865), 2, sym__ws, sym_comment, - ACTIONS(3388), 3, + ACTIONS(6867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(598), 3, + STATE(541), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1023), 19, + STATE(1876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66962,87 +87882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61425] = 35, + [60617] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3394), 1, + ACTIONS(6703), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6871), 2, sym__ws, sym_comment, - ACTIONS(3392), 3, + ACTIONS(6701), 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, + STATE(864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1026), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1825), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67062,7 +87982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61560] = 35, + [60752] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67071,78 +87991,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(6041), 1, anon_sym_COLON, - ACTIONS(198), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(200), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(202), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(217), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(219), 1, + ACTIONS(6131), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3398), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6873), 2, sym__ws, sym_comment, - ACTIONS(3396), 3, + ACTIONS(6129), 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, + STATE(866), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1027), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2799), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67162,87 +88082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61695] = 35, + [60887] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3402), 1, + ACTIONS(6877), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3400), 3, + ACTIONS(6875), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1028), 19, + STATE(1880), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67262,87 +88182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61830] = 35, + [61022] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3406), 1, + ACTIONS(6881), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3404), 3, + ACTIONS(6879), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1029), 19, + STATE(678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67362,87 +88282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61965] = 35, + [61157] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3410), 1, + ACTIONS(6885), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3408), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1030), 19, + STATE(1780), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67462,7 +88382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62100] = 35, + [61292] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -67501,19 +88421,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3414), 1, + ACTIONS(6891), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -67527,22 +88447,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6887), 2, sym__ws, sym_comment, - ACTIONS(3412), 3, + ACTIONS(6889), 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, + STATE(827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(581), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(596), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67562,7 +88482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62235] = 35, + [61427] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67571,78 +88491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(728), 1, + ACTIONS(6211), 1, + anon_sym_POUND, + ACTIONS(6215), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(6243), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1668), 1, + ACTIONS(6897), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1675), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(6245), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3416), 2, + ACTIONS(6893), 2, sym__ws, sym_comment, - ACTIONS(1666), 3, + ACTIONS(6895), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(571), 3, + STATE(700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1935), 19, + STATE(1678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67662,87 +88582,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62370] = 35, + [61562] = 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(47), 1, - sym_block_comment, - ACTIONS(486), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1798), 1, + ACTIONS(6903), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6899), 2, sym__ws, sym_comment, - ACTIONS(1796), 3, + ACTIONS(6901), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(873), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(1781), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67762,87 +88682,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62505] = 35, + [61697] = 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(728), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(730), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 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(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(750), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(752), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(754), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(756), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(758), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(975), 1, - anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(6907), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2167), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(744), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(766), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3418), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1736), 3, + ACTIONS(6905), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(353), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1936), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(607), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67862,87 +88782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62640] = 35, + [61832] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1498), 1, + ACTIONS(6911), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3420), 2, - sym__ws, - sym_comment, - ACTIONS(1496), 3, + ACTIONS(6909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(557), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2264), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1784), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67962,87 +88882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62775] = 35, + [61967] = 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3426), 1, + ACTIONS(6915), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3422), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3424), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(621), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1049), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68062,87 +88982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62910] = 35, + [62102] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3432), 1, + ACTIONS(6921), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3428), 2, + ACTIONS(6917), 2, sym__ws, sym_comment, - ACTIONS(3430), 3, + ACTIONS(6919), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(622), 3, + STATE(862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1052), 19, + STATE(616), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68162,7 +89082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63045] = 35, + [62237] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68171,78 +89091,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6149), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1502), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1500), 3, + ACTIONS(6147), 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, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2265), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68262,87 +89182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63180] = 35, + [62372] = 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(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3438), 1, + ACTIONS(6927), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3434), 2, + ACTIONS(6923), 2, sym__ws, sym_comment, - ACTIONS(3436), 3, + ACTIONS(6925), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(623), 3, + STATE(872), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1053), 19, + STATE(711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68362,87 +89282,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63315] = 35, + [62507] = 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(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(6933), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3440), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6929), 2, sym__ws, sym_comment, - ACTIONS(3442), 3, + ACTIONS(6931), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(641), 3, + STATE(874), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1227), 19, + STATE(1787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68462,7 +89382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63450] = 35, + [62642] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68501,19 +89421,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3448), 1, + ACTIONS(6937), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68527,22 +89447,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3446), 3, + ACTIONS(6935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(635), 19, + STATE(1771), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68562,187 +89482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63585] = 35, + [62777] = 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, - anon_sym_POUND, - ACTIONS(194), 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, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_BQUOTE, - ACTIONS(227), 1, - anon_sym_COMMA_AT, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3454), 1, - sym_self_referential_reader_macro, - STATE(1072), 1, - sym__bare_set_lit, - STATE(1074), 1, - sym_sym_lit, - STATE(2177), 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(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3450), 2, - sym__ws, - sym_comment, - ACTIONS(3452), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(624), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1073), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1054), 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, - [63720] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, 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(190), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(194), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(196), 1, - anon_sym_COLON, - ACTIONS(198), 1, - anon_sym_COLON_COLON, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(202), 1, - aux_sym_sym_lit_token1, - ACTIONS(217), 1, - anon_sym_POUND_QMARK, - ACTIONS(219), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(221), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(223), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(227), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(229), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(530), 1, - anon_sym_cl, - ACTIONS(3460), 1, + ACTIONS(6943), 1, sym_self_referential_reader_macro, - STATE(1072), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1074), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2177), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(215), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(236), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(240), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(242), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3456), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6939), 2, sym__ws, sym_comment, - ACTIONS(3458), 3, + ACTIONS(6941), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(625), 3, + STATE(879), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1073), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1055), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68762,7 +89582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63855] = 35, + [62912] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68771,78 +89591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, - anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, - anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(4803), 1, + anon_sym_POUND, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(698), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3464), 1, + ACTIONS(6949), 1, sym_self_referential_reader_macro, - STATE(1167), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1175), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6945), 2, sym__ws, sym_comment, - ACTIONS(3462), 3, + ACTIONS(6947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1244), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68862,7 +89682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63990] = 35, + [63047] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -68901,19 +89721,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3470), 1, + ACTIONS(6953), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -68927,22 +89747,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3466), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3468), 3, + ACTIONS(6951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(604), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(559), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(722), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68962,87 +89782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64125] = 35, + [63182] = 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(664), 1, - aux_sym_num_lit_token1, - ACTIONS(666), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(668), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(670), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(676), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(678), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(684), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(686), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(688), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(690), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(692), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(694), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(696), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(698), 1, - anon_sym_cl, - ACTIONS(1444), 1, - anon_sym_POUND, - ACTIONS(3474), 1, + ACTIONS(6937), 1, sym_self_referential_reader_macro, - STATE(1167), 1, - sym_sym_lit, - STATE(1175), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2160), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(682), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(700), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(704), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3472), 3, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6935), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1174), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1245), 19, + STATE(1771), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69062,87 +89882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64260] = 35, + [63317] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(3080), 1, - anon_sym_POUND, - ACTIONS(3480), 1, + ACTIONS(6877), 1, sym_self_referential_reader_macro, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3476), 2, - sym__ws, - sym_comment, - ACTIONS(3478), 3, + ACTIONS(6875), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(753), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2157), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1880), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69162,7 +89982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64395] = 35, + [63452] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69201,19 +90021,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3486), 1, + ACTIONS(6959), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69227,22 +90047,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3482), 2, + ACTIONS(6955), 2, sym__ws, sym_comment, - ACTIONS(3484), 3, + ACTIONS(6957), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(607), 3, + STATE(883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(683), 19, + STATE(732), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69262,87 +90082,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64530] = 35, + [63587] = 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, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(6585), 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(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, - anon_sym_cl, - ACTIONS(3490), 1, + ACTIONS(6869), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(6587), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6599), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(6961), 2, sym__ws, sym_comment, - ACTIONS(3488), 3, + ACTIONS(6867), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(882), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(840), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69362,7 +90182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64665] = 35, + [63722] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69401,19 +90221,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3494), 1, + ACTIONS(6967), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69427,22 +90247,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6963), 2, sym__ws, sym_comment, - ACTIONS(3492), 3, + ACTIONS(6965), 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, + STATE(924), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(650), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(782), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69462,9 +90282,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64800] = 35, + [63857] = 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, @@ -69483,66 +90307,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2708), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6971), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3496), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2706), 3, + ACTIONS(6969), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(677), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1498), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(715), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69562,7 +90382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64935] = 35, + [63992] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -69587,33 +90407,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1478), 1, + ACTIONS(6849), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -69621,28 +90441,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1476), 3, + ACTIONS(6847), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1505), 19, + STATE(1865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69662,87 +90482,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65070] = 35, + [64127] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1594), 1, + ACTIONS(6839), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(6973), 2, sym__ws, sym_comment, - ACTIONS(1592), 3, + ACTIONS(6837), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(889), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2267), 19, + STATE(1863), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69762,7 +90582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65205] = 35, + [64262] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -69801,19 +90621,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3502), 1, + ACTIONS(6977), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -69827,22 +90647,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3498), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3500), 3, + ACTIONS(6975), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(716), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(723), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69862,7 +90682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65340] = 35, + [64397] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(17), 1, @@ -69887,33 +90707,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(854), 1, + ACTIONS(5549), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1484), 1, - sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(51), 2, anon_sym_POUNDP, @@ -69921,128 +90741,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3504), 2, - sym__ws, - sym_comment, - ACTIONS(1482), 3, + ACTIONS(5547), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(693), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1506), 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, - [65475] = 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(3510), 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(3506), 2, - sym__ws, - sym_comment, - ACTIONS(3508), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(719), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2057), 19, + STATE(1805), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70062,9 +90782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65610] = 35, + [64532] = 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, @@ -70083,66 +90807,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1514), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6981), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1512), 3, + ACTIONS(6979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1509), 19, + STATE(741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70162,87 +90882,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65745] = 35, + [64667] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3514), 1, + ACTIONS(6985), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3512), 3, + ACTIONS(6983), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(839), 19, + STATE(745), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70262,187 +90982,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65880] = 35, + [64802] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3520), 1, + ACTIONS(6989), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3516), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3518), 3, + ACTIONS(6987), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(836), 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, - [66015] = 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(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(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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3522), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2058), 19, + STATE(926), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70462,7 +91082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66150] = 35, + [64937] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -70501,19 +91121,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3528), 1, + ACTIONS(6995), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -70527,22 +91147,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6991), 2, sym__ws, sym_comment, - ACTIONS(3526), 3, + ACTIONS(6993), 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, + STATE(881), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(681), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(755), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70562,87 +91182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66285] = 35, + [65072] = 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(47), 1, - sym_block_comment, - ACTIONS(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6503), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3534), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3530), 2, + ACTIONS(6997), 2, sym__ws, sym_comment, - ACTIONS(3532), 3, + ACTIONS(6501), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(724), 3, + STATE(768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2060), 19, + STATE(1859), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70662,7 +91282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66420] = 35, + [65207] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -70701,19 +91321,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3540), 1, + ACTIONS(7001), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -70727,22 +91347,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3536), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3538), 3, + ACTIONS(6999), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(689), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(665), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(769), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70762,87 +91382,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66555] = 35, + [65342] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(5525), 1, + sym_self_referential_reader_macro, + ACTIONS(6583), 1, + anon_sym_POUND, + ACTIONS(6585), 1, + aux_sym_num_lit_token1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1680), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, - sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3542), 2, - sym__ws, - sym_comment, - ACTIONS(1678), 3, + ACTIONS(5523), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(599), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2268), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70862,7 +91482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66690] = 35, + [65477] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70871,78 +91491,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3546), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7005), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3544), 3, + ACTIONS(7003), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2061), 19, + STATE(2037), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70962,7 +91582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66825] = 35, + [65612] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70971,78 +91591,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(2728), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(3552), 1, + ACTIONS(7011), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3548), 2, + ACTIONS(7007), 2, sym__ws, sym_comment, - ACTIONS(3550), 3, + ACTIONS(7009), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(700), 3, + STATE(916), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(830), 19, + STATE(227), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71062,7 +91682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66960] = 35, + [65747] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71071,78 +91691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5105), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3558), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3554), 2, + ACTIONS(7013), 2, sym__ws, sym_comment, - ACTIONS(3556), 3, + ACTIONS(5099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(729), 3, + STATE(915), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2083), 19, + STATE(1900), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71162,87 +91782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67095] = 35, + [65882] = 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(5115), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3564), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3560), 2, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7015), 2, sym__ws, sym_comment, - ACTIONS(3562), 3, + ACTIONS(5113), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(645), 3, + STATE(920), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(576), 19, + STATE(1901), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71262,7 +91882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67230] = 35, + [66017] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71271,78 +91891,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(5465), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3570), 1, - sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3566), 2, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7017), 2, sym__ws, sym_comment, - ACTIONS(3568), 3, + ACTIONS(5463), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(708), 3, + STATE(922), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(826), 19, + STATE(1902), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71362,7 +91982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67365] = 35, + [66152] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71371,78 +91991,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(1686), 1, + ACTIONS(7023), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1069), 1, + sym__bare_set_lit, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3572), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7019), 2, sym__ws, sym_comment, - ACTIONS(1684), 3, + ACTIONS(7021), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(633), 3, + STATE(913), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2269), 19, + STATE(38), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71462,7 +92082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67500] = 35, + [66287] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71471,78 +92091,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3576), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7027), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3574), 3, + ACTIONS(7025), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2062), 19, + STATE(2736), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71562,87 +92182,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67635] = 35, + [66422] = 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1524), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4993), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7029), 2, sym__ws, sym_comment, - ACTIONS(1522), 3, + ACTIONS(4991), 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, + STATE(925), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1510), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2504), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71662,7 +92282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67770] = 35, + [66557] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71671,78 +92291,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3582), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4981), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3578), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7031), 2, sym__ws, sym_comment, - ACTIONS(3580), 3, + ACTIONS(4979), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(736), 3, + STATE(930), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2063), 19, + STATE(2505), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71762,7 +92382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67905] = 35, + [66692] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71771,78 +92391,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(951), 1, - aux_sym_num_lit_token1, - ACTIONS(955), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(957), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(959), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(961), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(963), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(965), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(967), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1452), 1, - anon_sym_POUND, - ACTIONS(3480), 1, + ACTIONS(7035), 1, sym_self_referential_reader_macro, - STATE(1801), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, sym__bare_set_lit, - STATE(2149), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2244), 1, - sym_sym_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(312), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(953), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(969), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3584), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3478), 3, + ACTIONS(7033), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(393), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1800), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2157), 19, + STATE(2725), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71862,7 +92482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68040] = 35, + [66827] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71871,78 +92491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1728), 1, + ACTIONS(7041), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7037), 2, sym__ws, sym_comment, - ACTIONS(1726), 3, + ACTIONS(7039), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(905), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2270), 19, + STATE(2708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71962,7 +92582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68175] = 35, + [66962] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71971,78 +92591,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3590), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7047), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3586), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7043), 2, sym__ws, sym_comment, - ACTIONS(3588), 3, + ACTIONS(7045), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(741), 3, + STATE(904), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2064), 19, + STATE(2718), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72062,7 +92682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68310] = 35, + [67097] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72071,78 +92691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3596), 1, + ACTIONS(7053), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3592), 2, + ACTIONS(7049), 2, sym__ws, sym_comment, - ACTIONS(3594), 3, + ACTIONS(7051), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(709), 3, + STATE(899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(822), 19, + STATE(2741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72162,87 +92782,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68445] = 35, + [67232] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3602), 1, + ACTIONS(7059), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3598), 2, + ACTIONS(7055), 2, sym__ws, sym_comment, - ACTIONS(3600), 3, + ACTIONS(7057), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(690), 3, + STATE(896), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(659), 19, + STATE(2738), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72262,7 +92882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68580] = 35, + [67367] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72271,78 +92891,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(1746), 1, + ACTIONS(7063), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2497), 1, + sym_sym_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1744), 3, + ACTIONS(7061), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2271), 19, + STATE(2715), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72362,7 +92982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68715] = 35, + [67502] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72371,78 +92991,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3606), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7067), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3604), 3, + ACTIONS(7065), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2065), 19, + STATE(2705), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72462,7 +93082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68850] = 35, + [67637] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72471,78 +93091,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3612), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5953), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3608), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3610), 3, + ACTIONS(5951), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(747), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2066), 19, + STATE(2511), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72562,9 +93182,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68985] = 35, + [67772] = 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, @@ -72583,66 +93207,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1534), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7073), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7069), 2, sym__ws, sym_comment, - ACTIONS(1532), 3, + ACTIONS(7071), 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, + STATE(888), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1517), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72662,7 +93282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69120] = 35, + [67907] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72671,178 +93291,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - 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(620), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, - anon_sym_SQUOTE, - ACTIONS(626), 1, - anon_sym_BQUOTE, - ACTIONS(628), 1, - anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1764), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, + ACTIONS(724), 1, anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1762), 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(2272), 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, - [69255] = 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(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3616), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(7077), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1189), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3614), 3, + ACTIONS(7075), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2067), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72862,7 +93382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69390] = 35, + [68042] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72871,78 +93391,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3622), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7083), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3618), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7079), 2, sym__ws, sym_comment, - ACTIONS(3620), 3, + ACTIONS(7081), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(750), 3, + STATE(890), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2068), 19, + STATE(2044), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72962,7 +93482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69525] = 35, + [68177] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72971,78 +93491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_POUND, + ACTIONS(5027), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(1788), 1, + ACTIONS(6949), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2380), 1, + STATE(3077), 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, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3624), 2, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7085), 2, sym__ws, sym_comment, - ACTIONS(1786), 3, + ACTIONS(6947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(648), 3, + STATE(834), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2283), 19, + STATE(2498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73062,87 +93582,90 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69660] = 35, + [68312] = 36, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(43), 1, + anon_sym_COMMA_AT, + ACTIONS(45), 1, + anon_sym_COMMA, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(5175), 1, + anon_sym_POUND, + ACTIONS(5179), 1, + aux_sym_num_lit_token1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(5185), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(5187), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, - anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1792), 1, + ACTIONS(7089), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(2810), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2990), 1, sym__bare_set_lit, - STATE(2380), 1, + STATE(3077), 1, sym_sym_lit, - ACTIONS(508), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1790), 3, + STATE(2005), 2, + sym_unquote_splicing_lit, + sym_unquoting_lit, + ACTIONS(7087), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2285), 19, + STATE(2754), 17, sym__form, sym_num_lit, sym_kwd_lit, @@ -73156,15 +93679,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [69795] = 35, + [68449] = 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, @@ -73183,66 +93708,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1540), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7093), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3626), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1538), 3, + ACTIONS(7091), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(697), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1512), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73262,7 +93783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69930] = 35, + [68584] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73271,78 +93792,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(177), 1, + anon_sym_POUND, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3630), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(7097), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1073), 1, + sym_sym_lit, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3628), 3, + ACTIONS(7095), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2069), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(24), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73362,87 +93883,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70065] = 35, + [68719] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3634), 1, + ACTIONS(7101), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3632), 3, + ACTIONS(7099), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(834), 19, + STATE(955), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73462,7 +93983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70200] = 35, + [68854] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73471,78 +93992,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5521), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3638), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3636), 3, + ACTIONS(5519), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2070), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73562,7 +94083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70335] = 35, + [68989] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73571,78 +94092,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2728), 1, + anon_sym_POUND, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3644), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(4797), 1, + anon_sym_cl, + ACTIONS(7105), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1484), 1, + sym_sym_lit, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3640), 2, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3642), 3, + ACTIONS(7103), 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, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2071), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(179), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73662,87 +94183,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70470] = 35, + [69124] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3650), 1, + ACTIONS(7111), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3646), 2, + ACTIONS(7107), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(7109), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(694), 3, + STATE(760), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1453), 19, + STATE(2728), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73762,7 +94283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70605] = 35, + [69259] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -73801,19 +94322,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3654), 1, + ACTIONS(7117), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -73827,22 +94348,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(7113), 2, sym__ws, sym_comment, - ACTIONS(3652), 3, + ACTIONS(7115), 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, + STATE(912), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(630), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(974), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73862,7 +94383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70740] = 35, + [69394] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -73901,19 +94422,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3658), 1, + ACTIONS(7123), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -73927,22 +94448,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(7119), 2, sym__ws, sym_comment, - ACTIONS(3656), 3, + ACTIONS(7121), 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, + STATE(914), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(582), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73962,7 +94483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70875] = 35, + [69529] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73971,78 +94492,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5541), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3662), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3660), 3, + ACTIONS(5539), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2072), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74062,87 +94583,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71010] = 35, + [69664] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3668), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7127), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3664), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3666), 3, + ACTIONS(7125), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(759), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2073), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(960), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74162,87 +94683,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71145] = 35, + [69799] = 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, + ACTIONS(5545), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, + anon_sym_POUND_QMARK, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1864), 1, - sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(1862), 3, + ACTIONS(5543), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1518), 19, + STATE(1970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74262,7 +94783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71280] = 35, + [69934] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -74301,19 +94822,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2078), 1, + ACTIONS(6885), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -74327,22 +94848,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2076), 3, + ACTIONS(6883), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1475), 19, + STATE(1780), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74362,87 +94883,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71415] = 35, + [70069] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3674), 1, + ACTIONS(7131), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(3670), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3672), 3, + ACTIONS(7129), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(833), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(797), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74462,7 +94983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71550] = 35, + [70204] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74471,78 +94992,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3678), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4923), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3676), 3, + ACTIONS(4921), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2074), 19, + STATE(2515), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74562,9 +95083,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71685] = 35, + [70339] = 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, @@ -74583,66 +95108,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1912), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(6903), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7133), 2, sym__ws, sym_comment, - ACTIONS(1910), 3, + ACTIONS(6901), 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, + STATE(869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1520), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1781), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74662,7 +95183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71820] = 35, + [70474] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74671,66 +95192,66 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3684), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7139), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3680), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7135), 2, sym__ws, sym_comment, - ACTIONS(3682), 3, + ACTIONS(7137), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, @@ -74738,11 +95259,11 @@ static const uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2075), 19, + STATE(2730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74762,87 +95283,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71955] = 35, + [70609] = 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1918), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7145), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3686), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7141), 2, sym__ws, sym_comment, - ACTIONS(1916), 3, + ACTIONS(7143), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(722), 3, + STATE(771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1521), 19, + STATE(2731), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74862,87 +95383,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72090] = 35, + [70744] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3690), 1, + ACTIONS(7151), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(7147), 2, sym__ws, sym_comment, - ACTIONS(3688), 3, + ACTIONS(7149), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(921), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(825), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(933), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74962,7 +95483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72225] = 35, + [70879] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74971,78 +95492,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3694), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(4919), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3692), 3, + ACTIONS(4917), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2076), 19, + STATE(2516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75062,87 +95583,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72360] = 35, + [71014] = 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(556), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(558), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(560), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(562), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(570), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(576), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(578), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(580), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(582), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(584), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(586), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(588), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(590), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1436), 1, - anon_sym_POUND, - ACTIONS(3700), 1, + ACTIONS(7157), 1, sym_self_referential_reader_macro, - STATE(1386), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(1388), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2172), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(574), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(592), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(596), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(598), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3696), 2, + ACTIONS(7153), 2, sym__ws, sym_comment, - ACTIONS(3698), 3, + ACTIONS(7155), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(388), 3, + STATE(878), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1387), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1385), 19, + STATE(754), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75162,7 +95683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72495] = 35, + [71149] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75171,78 +95692,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5835), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3704), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3702), 3, + ACTIONS(5833), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2077), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1945), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75262,7 +95783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72630] = 35, + [71284] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75271,78 +95792,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5575), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3710), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3706), 2, + ACTIONS(7159), 2, sym__ws, sym_comment, - ACTIONS(3708), 3, + ACTIONS(5573), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(768), 3, + STATE(958), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2078), 19, + STATE(1968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75362,87 +95883,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72765] = 35, + [71419] = 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(77), 1, + anon_sym_COLON_COLON, + ACTIONS(79), 1, + anon_sym_DQUOTE, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(100), 1, + anon_sym_POUND_QMARK, + ACTIONS(102), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1926), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7165), 1, sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7161), 2, sym__ws, sym_comment, - ACTIONS(1924), 3, + ACTIONS(7163), 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, + STATE(776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1522), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2732), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75462,87 +95983,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72900] = 35, + [71554] = 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, + ACTIONS(5597), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, + anon_sym_POUND_QMARK, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1932), 1, - sym_self_referential_reader_macro, - ACTIONS(2074), 1, - anon_sym_POUND, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3712), 2, + ACTIONS(7167), 2, sym__ws, sym_comment, - ACTIONS(1930), 3, + ACTIONS(5595), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(737), 3, + STATE(961), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1523), 19, + STATE(1966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75562,87 +96083,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73035] = 35, + [71689] = 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(5827), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3718), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3714), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3716), 3, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5825), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(715), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(378), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1946), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75662,7 +96183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73170] = 35, + [71824] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75671,78 +96192,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(177), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(181), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4859), 1, anon_sym_cl, - ACTIONS(3722), 1, + ACTIONS(7173), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1073), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(226), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(7169), 2, sym__ws, sym_comment, - ACTIONS(3720), 3, + ACTIONS(7171), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(835), 19, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(33), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75762,7 +96283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73305] = 35, + [71959] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75771,78 +96292,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(2728), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(2732), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4793), 1, + anon_sym_COLON, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4797), 1, anon_sym_cl, - ACTIONS(3726), 1, + ACTIONS(7179), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1484), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(2775), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(2781), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(7175), 2, sym__ws, sym_comment, - ACTIONS(3724), 3, + ACTIONS(7177), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + STATE(829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(844), 19, + STATE(1483), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(249), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75862,7 +96383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73440] = 35, + [72094] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75871,78 +96392,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5603), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1832), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3728), 2, + ACTIONS(7181), 2, sym__ws, sym_comment, - ACTIONS(1830), 3, + ACTIONS(5601), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(670), 3, + STATE(964), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2348), 19, + STATE(1965), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75962,7 +96483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73575] = 35, + [72229] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75971,78 +96492,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3734), 1, + ACTIONS(4889), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3730), 2, + ACTIONS(7183), 2, sym__ws, sym_comment, - ACTIONS(3732), 3, + ACTIONS(4887), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(749), 3, + STATE(965), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(841), 19, + STATE(2523), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76062,187 +96583,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73710] = 35, + [72364] = 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(604), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, - anon_sym_SQUOTE, - ACTIONS(626), 1, - anon_sym_BQUOTE, - ACTIONS(628), 1, - anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(1848), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(3736), 2, - sym__ws, - sym_comment, - ACTIONS(1846), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(674), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2302), 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, - [73845] = 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(604), 1, - aux_sym_num_lit_token1, - 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, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1854), 1, + ACTIONS(7189), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3738), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7185), 2, sym__ws, sym_comment, - ACTIONS(1852), 3, + ACTIONS(7187), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(678), 3, + STATE(949), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2303), 19, + STATE(807), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76262,7 +96683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73980] = 35, + [72499] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76271,78 +96692,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(61), 1, + ACTIONS(67), 1, anon_sym_POUND, - ACTIONS(65), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3744), 1, + ACTIONS(6949), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2497), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3740), 2, + ACTIONS(7191), 2, sym__ws, sym_comment, - ACTIONS(3742), 3, + ACTIONS(6947), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(754), 3, + STATE(906), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(852), 19, + STATE(2498), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76362,7 +96783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74115] = 35, + [72634] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -76401,19 +96822,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3748), 1, + ACTIONS(6911), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -76427,22 +96848,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3746), 3, + ACTIONS(6909), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(368), 19, + STATE(1784), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76462,87 +96883,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74250] = 35, + [72769] = 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(604), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1860), 1, + ACTIONS(7197), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3750), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7193), 2, sym__ws, sym_comment, - ACTIONS(1858), 3, + ACTIONS(7195), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(682), 3, + STATE(952), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2306), 19, + STATE(809), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76562,7 +96983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74385] = 35, + [72904] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -76601,19 +97022,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3756), 1, + ACTIONS(7201), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -76627,22 +97048,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3752), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3754), 3, + ACTIONS(7199), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(744), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(350), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(880), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76662,7 +97083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74520] = 35, + [73039] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -76701,19 +97122,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3762), 1, + ACTIONS(6915), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -76727,22 +97148,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3758), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3760), 3, + ACTIONS(6913), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(745), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(344), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1785), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76762,87 +97183,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74655] = 35, + [73174] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7205), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3764), 3, + ACTIONS(7203), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2080), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(876), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76862,187 +97283,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74790] = 35, + [73309] = 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, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(23), 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(3772), 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(3768), 2, - sym__ws, - sym_comment, - ACTIONS(3770), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(773), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2018), 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, - [74925] = 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(604), 1, - aux_sym_num_lit_token1, - 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, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1886), 1, + ACTIONS(6713), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1875), 1, + sym__bare_set_lit, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(1884), 3, + ACTIONS(6711), 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, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77062,9 +97383,13 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75060] = 35, + [73444] = 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, @@ -77083,66 +97408,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(854), 1, - aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2304), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7209), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(856), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(868), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2302), 3, + ACTIONS(7207), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1530), 19, + STATE(817), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77162,7 +97483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75195] = 35, + [73579] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77171,78 +97492,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5811), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1894), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7211), 2, sym__ws, sym_comment, - ACTIONS(1892), 3, + ACTIONS(5809), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(932), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2311), 19, + STATE(1950), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77262,7 +97583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75330] = 35, + [73714] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77271,78 +97592,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5797), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3776), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3774), 3, + ACTIONS(5795), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2084), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1951), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77362,87 +97683,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75465] = 35, + [73849] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3782), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7215), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3778), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3780), 3, + ACTIONS(7213), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(777), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2085), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(819), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77462,7 +97783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75600] = 35, + [73984] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77471,78 +97792,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6639), 1, + sym_self_referential_reader_macro, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1898), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7217), 2, sym__ws, sym_comment, - ACTIONS(1896), 3, + ACTIONS(6637), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(831), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2312), 19, + STATE(2831), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77562,7 +97883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75735] = 35, + [74119] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -77601,19 +97922,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3786), 1, + ACTIONS(6933), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -77627,22 +97948,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(7219), 2, sym__ws, sym_comment, - ACTIONS(3784), 3, + ACTIONS(6931), 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, + STATE(856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(171), 19, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77662,7 +97983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75870] = 35, + [74254] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77671,78 +97992,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5793), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1936), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7221), 2, sym__ws, sym_comment, - ACTIONS(1934), 3, + ACTIONS(5791), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(936), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1952), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77762,87 +98083,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76005] = 35, + [74389] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3790), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7225), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3788), 3, + ACTIONS(7223), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2086), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(853), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77862,87 +98183,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76140] = 35, + [74524] = 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(5781), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3794), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3792), 3, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5779), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(176), 19, + STATE(1953), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77962,7 +98283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76275] = 35, + [74659] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77971,78 +98292,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5613), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3800), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3796), 2, - sym__ws, - sym_comment, - ACTIONS(3798), 3, + ACTIONS(5611), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(782), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2087), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1962), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78062,87 +98383,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76410] = 35, + [74794] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3806), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7231), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3802), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7227), 2, sym__ws, sym_comment, - ACTIONS(3804), 3, + ACTIONS(7229), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(784), 3, + STATE(962), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2089), 19, + STATE(851), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78162,7 +98483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76545] = 35, + [74929] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78171,78 +98492,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(5687), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(1940), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 1, + STATE(1893), 1, + sym__bare_set_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2337), 1, - sym__bare_set_lit, - STATE(2380), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7233), 2, sym__ws, sym_comment, - ACTIONS(1938), 3, + ACTIONS(5685), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(968), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2314), 19, + STATE(1961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78262,87 +98583,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76680] = 35, + [75064] = 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(5691), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3812), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3808), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3810), 3, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(5689), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(465), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(467), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1959), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78362,87 +98683,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76815] = 35, + [75199] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3816), 1, + ACTIONS(7237), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1878), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3814), 3, + ACTIONS(7235), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(862), 19, + STATE(861), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78462,87 +98783,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76950] = 35, + [75334] = 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3820), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(7243), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7239), 2, sym__ws, sym_comment, - ACTIONS(3818), 3, + ACTIONS(7241), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(947), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2090), 19, + STATE(868), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78562,87 +98883,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77085] = 35, + [75469] = 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, + ACTIONS(5703), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, + anon_sym_POUND_QMARK, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(858), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(860), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(862), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(864), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(866), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(2074), 1, - anon_sym_POUND, - ACTIONS(2318), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(856), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2316), 3, + ACTIONS(5701), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1531), 19, + STATE(1958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78662,7 +98983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77220] = 35, + [75604] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78671,78 +98992,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3826), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(5345), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3822), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3824), 3, + ACTIONS(5343), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(789), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2091), 19, + STATE(2537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78762,7 +99083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77355] = 35, + [75739] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -78801,19 +99122,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2398), 1, + ACTIONS(7249), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -78827,22 +99148,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3828), 2, + ACTIONS(7245), 2, sym__ws, sym_comment, - ACTIONS(2396), 3, + ACTIONS(7247), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(471), 3, + STATE(945), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1471), 19, + STATE(870), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78862,87 +99183,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77490] = 35, + [75874] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2382), 1, + ACTIONS(7255), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3830), 2, + ACTIONS(7251), 2, sym__ws, sym_comment, - ACTIONS(2380), 3, + ACTIONS(7253), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(492), 3, + STATE(766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1470), 19, + STATE(2686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78962,7 +99283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77625] = 35, + [76009] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78971,78 +99292,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5767), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3834), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3832), 3, + ACTIONS(5765), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2092), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1955), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79062,7 +99383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77760] = 35, + [76144] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -79101,19 +99422,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2372), 1, + ACTIONS(7259), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -79127,22 +99448,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3836), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2370), 3, + ACTIONS(7257), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(501), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1469), 19, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79162,7 +99483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77895] = 35, + [76279] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79171,78 +99492,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(67), 1, + anon_sym_POUND, + ACTIONS(71), 1, + aux_sym_num_lit_token1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_cl, + ACTIONS(7263), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1925), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(123), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3838), 2, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3840), 3, + ACTIONS(7261), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(794), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2093), 19, + STATE(2684), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79262,87 +99583,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78030] = 35, + [76414] = 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(5743), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, + anon_sym_COLON, + ACTIONS(6043), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(6047), 1, + aux_sym_sym_lit_token1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3846), 1, - sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7265), 2, sym__ws, sym_comment, - ACTIONS(3844), 3, + ACTIONS(5741), 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, + STATE(957), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(338), 19, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1957), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79362,87 +99683,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78165] = 35, + [76549] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3850), 1, + ACTIONS(7269), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(3848), 3, + ACTIONS(7267), 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, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(334), 19, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2678), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79462,7 +99783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78300] = 35, + [76684] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -79501,19 +99822,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2362), 1, + ACTIONS(6943), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1878), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -79527,22 +99848,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3852), 2, + ACTIONS(7271), 2, sym__ws, sym_comment, - ACTIONS(2360), 3, + ACTIONS(6941), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(509), 3, + STATE(846), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1468), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79562,7 +99883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78435] = 35, + [76819] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79571,78 +99892,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5755), 1, + sym_self_referential_reader_macro, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6779), 1, + anon_sym_POUND, + ACTIONS(6781), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6785), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + ACTIONS(6797), 1, + anon_sym_cl, + STATE(1893), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2874), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6783), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6799), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, + ACTIONS(7273), 2, sym__ws, sym_comment, - ACTIONS(3854), 3, + ACTIONS(5753), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, + STATE(951), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2094), 19, + STATE(1956), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79662,87 +99983,87 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78570] = 35, + [76954] = 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(67), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(81), 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(100), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(2356), 1, + ACTIONS(7277), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(2497), 1, sym_sym_lit, - STATE(1452), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3858), 2, + ACTIONS(4801), 2, sym__ws, sym_comment, - ACTIONS(2354), 3, + ACTIONS(7275), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(537), 3, + STATE(1967), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1467), 19, + STATE(2676), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79762,93 +100083,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78705] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77089] = 37, 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, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(6781), 1, + aux_sym_num_lit_token1, + ACTIONS(6785), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(6787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(6789), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(6791), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(6793), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(6795), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(6797), 1, anon_sym_cl, - ACTIONS(3862), 1, + ACTIONS(7279), 1, + anon_sym_POUND, + ACTIONS(7281), 1, + aux_sym__form_token1, + ACTIONS(7285), 1, + aux_sym_char_lit_token1, + ACTIONS(7287), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, sym_self_referential_reader_macro, - STATE(927), 1, + STATE(1893), 1, sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 1, + STATE(1896), 1, + sym_list_lit, + STATE(2832), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2875), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(3018), 1, + sym_array_dimension, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3860), 3, + ACTIONS(6783), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(6799), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(864), 19, - sym__form, + STATE(1894), 17, 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, @@ -79862,93 +100182,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78840] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77225] = 37, 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(728), 1, + aux_sym_num_lit_token1, ACTIONS(732), 1, anon_sym_COLON_COLON, ACTIONS(734), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(736), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(740), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(742), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(744), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(746), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(750), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(752), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(4412), 1, + anon_sym_cl, + ACTIONS(7291), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(7293), 1, + aux_sym__form_token1, + ACTIONS(7297), 1, + aux_sym_char_lit_token1, + ACTIONS(7299), 1, + anon_sym_LBRACE, + ACTIONS(7301), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1191), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1218), 1, + sym_sym_lit, + STATE(1219), 1, + sym_list_lit, + STATE(2827), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(3052), 1, + sym_array_dimension, + ACTIONS(738), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(754), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(758), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3864), 3, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7295), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2095), 19, - sym__form, + STATE(1196), 17, 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, @@ -79962,93 +100281,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78975] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77361] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(730), 1, + ACTIONS(5027), 1, + aux_sym_num_lit_token1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(5039), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(5041), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5043), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5045), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5047), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5049), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5051), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(5053), 1, + anon_sym_cl, + ACTIONS(7303), 1, anon_sym_POUND, - ACTIONS(3872), 1, + ACTIONS(7305), 1, + aux_sym__form_token1, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + STATE(2830), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(2951), 1, + sym_list_lit, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3016), 1, + sym_array_dimension, + STATE(3076), 1, + sym_sym_lit, + ACTIONS(5037), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5055), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(5059), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3868), 2, - sym__ws, - sym_comment, - ACTIONS(3870), 3, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7307), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(797), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2096), 19, - sym__form, + STATE(2923), 17, 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, @@ -80062,93 +100380,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79110] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77497] = 37, 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, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(4807), 1, + aux_sym_num_lit_token1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(4817), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(4819), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(4821), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(4823), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3878), 1, + ACTIONS(7315), 1, + anon_sym_POUND, + ACTIONS(7317), 1, + aux_sym__form_token1, + ACTIONS(7321), 1, + aux_sym_char_lit_token1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(7325), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2500), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2607), 1, + sym_list_lit, + STATE(2625), 1, + sym__bare_set_lit, + STATE(2828), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, + STATE(3040), 1, + sym_array_dimension, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3874), 2, - sym__ws, - sym_comment, - ACTIONS(3876), 3, + ACTIONS(4813), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(4829), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(7319), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(762), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(865), 19, - sym__form, + STATE(2616), 17, 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, @@ -80162,93 +100479,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79245] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77633] = 37, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, + ACTIONS(6047), 1, aux_sym_sym_lit_token1, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(618), 1, + ACTIONS(6051), 1, anon_sym_POUND_QMARK, - ACTIONS(620), 1, + ACTIONS(6053), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, + ACTIONS(6055), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, + ACTIONS(6057), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, + ACTIONS(6059), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, + ACTIONS(6061), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(632), 1, + ACTIONS(6065), 1, anon_sym_cl, - ACTIONS(2516), 1, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_self_referential_reader_macro, - ACTIONS(3080), 1, + ACTIONS(7327), 1, anon_sym_POUND, - STATE(2151), 1, + ACTIONS(7329), 1, + aux_sym__form_token1, + STATE(2815), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2337), 1, + STATE(2951), 1, + sym_list_lit, + STATE(2990), 1, sym__bare_set_lit, - STATE(2380), 1, + STATE(3026), 1, sym_sym_lit, - ACTIONS(508), 2, + STATE(3035), 1, + sym_array_dimension, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(514), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(616), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(634), 2, + ACTIONS(6067), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2514), 3, + ACTIONS(7307), 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, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2173), 19, - sym__form, + STATE(2923), 17, 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, @@ -80262,93 +100578,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79380] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77769] = 37, 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, + ACTIONS(1624), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(1628), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(1630), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(1632), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(1638), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(1640), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(1642), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(1644), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(1646), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(1648), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(1650), 1, anon_sym_COMMA, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, anon_sym_cl, - ACTIONS(3882), 1, + ACTIONS(7285), 1, + aux_sym_char_lit_token1, + ACTIONS(7287), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, sym_self_referential_reader_macro, - STATE(927), 1, + ACTIONS(7331), 1, + anon_sym_POUND, + ACTIONS(7333), 1, + aux_sym__form_token1, + STATE(1893), 1, sym__bare_set_lit, - STATE(929), 1, + STATE(1896), 1, + sym_list_lit, + STATE(2763), 1, sym_sym_lit, - STATE(2169), 1, + STATE(2821), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + STATE(3007), 1, + sym_array_dimension, + ACTIONS(1636), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(1658), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(1662), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3880), 3, + ACTIONS(7283), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(866), 19, - sym__form, + STATE(1894), 17, 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, @@ -80362,93 +100677,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79515] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [77905] = 37, 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, + ACTIONS(6215), 1, + aux_sym_num_lit_token1, + ACTIONS(6217), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(6219), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(6221), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(6223), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(6229), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(6231), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6233), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6235), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6237), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6239), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6241), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(6243), 1, + anon_sym_cl, + ACTIONS(7335), 1, anon_sym_POUND, - ACTIONS(3886), 1, + ACTIONS(7337), 1, + aux_sym__form_token1, + ACTIONS(7341), 1, + aux_sym_char_lit_token1, + ACTIONS(7343), 1, + anon_sym_LBRACE, + ACTIONS(7345), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1677), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1682), 1, + sym_sym_lit, + STATE(1683), 1, + sym_list_lit, + STATE(2833), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(3038), 1, + sym_array_dimension, + ACTIONS(6227), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6245), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(6249), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3884), 3, + ACTIONS(6251), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7339), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2097), 19, - sym__form, + STATE(1680), 17, 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, @@ -80462,193 +100776,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79650] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78041] = 37, 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, + ACTIONS(2732), 1, + aux_sym_num_lit_token1, + ACTIONS(2737), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(2741), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(2756), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(2758), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(2760), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(2762), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(2764), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(2766), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(2768), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3892), 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(3888), 2, - sym__ws, - sym_comment, - ACTIONS(3890), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(799), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2098), 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, - [79785] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(17), 1, + ACTIONS(4793), 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(4795), 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(4797), 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, + ACTIONS(7347), 1, anon_sym_POUND, - ACTIONS(3650), 1, + ACTIONS(7349), 1, + aux_sym__form_token1, + ACTIONS(7353), 1, + aux_sym_char_lit_token1, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(7357), 1, sym_self_referential_reader_macro, - STATE(1450), 1, + STATE(1477), 1, + sym_list_lit, + STATE(1478), 1, sym_sym_lit, - STATE(1452), 1, + STATE(1482), 1, sym__bare_set_lit, - STATE(2146), 1, + STATE(2813), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(3002), 1, + sym_array_dimension, + ACTIONS(2754), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(868), 2, + ACTIONS(2775), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(2779), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3894), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7351), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(298), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1453), 19, - sym__form, + STATE(1480), 17, 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, @@ -80662,93 +100875,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79920] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78177] = 37, 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, + ACTIONS(4751), 1, + aux_sym_num_lit_token1, + ACTIONS(4753), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(4755), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(4757), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(4759), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(4767), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(4769), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(4771), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(4773), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(4775), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(4777), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(4779), 1, + anon_sym_cl, + ACTIONS(7359), 1, anon_sym_POUND, - ACTIONS(2628), 1, + ACTIONS(7361), 1, + aux_sym__form_token1, + ACTIONS(7365), 1, + aux_sym_char_lit_token1, + ACTIONS(7367), 1, + anon_sym_LBRACE, + ACTIONS(7369), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1490), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1496), 1, + sym_list_lit, + STATE(1589), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2841), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(3045), 1, + sym_array_dimension, + ACTIONS(4763), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(4781), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(4785), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2626), 3, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7363), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1879), 19, - sym__form, + STATE(1494), 17, 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, @@ -80762,93 +100974,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80055] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78313] = 37, 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, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(5033), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(5035), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, - anon_sym_POUND_QMARK, - ACTIONS(748), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(5053), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(5179), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_POUND_QMARK, + ACTIONS(5187), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5189), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(5193), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(5195), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(5197), 1, anon_sym_COMMA, - ACTIONS(1664), 1, - anon_sym_POUND, - ACTIONS(3898), 1, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, - sym__bare_set_lit, - STATE(2154), 1, + ACTIONS(7371), 1, + anon_sym_POUND, + ACTIONS(7373), 1, + aux_sym__form_token1, + STATE(2839), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(2951), 1, + sym_list_lit, + STATE(2990), 1, + sym__bare_set_lit, + STATE(3027), 1, + sym_array_dimension, + STATE(3076), 1, + sym_sym_lit, + ACTIONS(5055), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(5183), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(5201), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3896), 3, + ACTIONS(7307), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2099), 19, - sym__form, + STATE(2923), 17, 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, @@ -80862,93 +101073,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80190] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78449] = 37, + 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(486), 1, + ACTIONS(29), 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, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(838), 1, + ACTIONS(6585), 1, aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(6589), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(6591), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(6595), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(7375), 1, anon_sym_POUND, - ACTIONS(3904), 1, + ACTIONS(7377), 1, + aux_sym__form_token1, + ACTIONS(7381), 1, + aux_sym_char_lit_token1, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(7385), 1, sym_self_referential_reader_macro, - STATE(1848), 1, - sym_sym_lit, - STATE(1925), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(1887), 1, + sym_list_lit, + STATE(1888), 1, + sym_sym_lit, + STATE(2812), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(762), 2, + STATE(3019), 1, + sym_array_dimension, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(840), 2, + ACTIONS(6587), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(6599), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3900), 2, - sym__ws, - sym_comment, - ACTIONS(3902), 3, + ACTIONS(7379), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(800), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2100), 19, - sym__form, + STATE(1769), 17, 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, @@ -80962,193 +101172,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80325] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78585] = 37, 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, + ACTIONS(71), 1, aux_sym_num_lit_token1, - ACTIONS(67), 1, - anon_sym_COLON, - ACTIONS(69), 1, + ACTIONS(77), 1, anon_sym_COLON_COLON, - ACTIONS(71), 1, + ACTIONS(79), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(77), 1, + ACTIONS(100), 1, anon_sym_POUND_QMARK, - ACTIONS(79), 1, + ACTIONS(102), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(81), 1, + ACTIONS(104), 1, anon_sym_POUND_SQUOTE, - ACTIONS(83), 1, + ACTIONS(106), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(108), 1, anon_sym_BQUOTE, - ACTIONS(87), 1, + ACTIONS(110), 1, anon_sym_COMMA_AT, - ACTIONS(89), 1, + ACTIONS(112), 1, anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(834), 1, + ACTIONS(4825), 1, anon_sym_cl, - ACTIONS(3910), 1, + ACTIONS(7315), 1, + anon_sym_POUND, + ACTIONS(7317), 1, + aux_sym__form_token1, + ACTIONS(7321), 1, + aux_sym_char_lit_token1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(7325), 1, sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, + STATE(2500), 1, sym_sym_lit, - STATE(2169), 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(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(97), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(99), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3906), 2, - sym__ws, - sym_comment, - ACTIONS(3908), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(766), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(868), 19, - sym__form, - sym_num_lit, - sym_kwd_lit, - sym_str_lit, - sym_char_lit, + STATE(2607), 1, 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, - [80460] = 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, - anon_sym_cl, - ACTIONS(3914), 1, - sym_self_referential_reader_macro, - STATE(927), 1, + STATE(2625), 1, sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 1, + STATE(2834), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, - ACTIONS(75), 2, + STATE(3040), 1, + sym_array_dimension, + ACTIONS(98), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(93), 2, + ACTIONS(123), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + ACTIONS(127), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3912), 3, + ACTIONS(7319), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(928), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(878), 19, - sym__form, + STATE(2616), 17, 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, @@ -81162,11 +101271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80595] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, + [78721] = 37, ACTIONS(15), 1, aux_sym_num_lit_token1, ACTIONS(17), 1, @@ -81201,20 +101306,32 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - ACTIONS(3920), 1, + ACTIONS(7375), 1, + anon_sym_POUND, + ACTIONS(7377), 1, + aux_sym__form_token1, + ACTIONS(7381), 1, + aux_sym_char_lit_token1, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(7385), 1, sym_self_referential_reader_macro, - STATE(1450), 1, - sym_sym_lit, - STATE(1452), 1, + STATE(1875), 1, sym__bare_set_lit, - STATE(2178), 1, + STATE(1887), 1, + sym_list_lit, + STATE(1888), 1, + sym_sym_lit, + STATE(2808), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 1, sym__metadata_lit, + STATE(3019), 1, + sym_array_dimension, ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, @@ -81227,28 +101344,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3916), 2, - sym__ws, - sym_comment, - ACTIONS(3918), 3, + ACTIONS(7379), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(795), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(250), 19, - sym__form, + STATE(1769), 17, 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, @@ -81262,93 +101370,92 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80730] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, + [78857] = 37, 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, + ACTIONS(181), 1, + aux_sym_num_lit_token1, + ACTIONS(186), 1, anon_sym_COLON_COLON, - ACTIONS(734), 1, + ACTIONS(188), 1, anon_sym_DQUOTE, - ACTIONS(740), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(746), 1, + ACTIONS(205), 1, anon_sym_POUND_QMARK, - ACTIONS(748), 1, + ACTIONS(207), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(760), 1, - anon_sym_cl, - ACTIONS(838), 1, - aux_sym_num_lit_token1, - ACTIONS(842), 1, + ACTIONS(209), 1, anon_sym_POUND_SQUOTE, - ACTIONS(844), 1, + ACTIONS(211), 1, anon_sym_SQUOTE, - ACTIONS(846), 1, + ACTIONS(213), 1, anon_sym_BQUOTE, - ACTIONS(848), 1, + ACTIONS(215), 1, anon_sym_COMMA_AT, - ACTIONS(850), 1, + ACTIONS(217), 1, anon_sym_COMMA, - ACTIONS(1664), 1, + ACTIONS(4855), 1, + anon_sym_COLON, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_cl, + ACTIONS(7387), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(7389), 1, + aux_sym__form_token1, + ACTIONS(7393), 1, + aux_sym_char_lit_token1, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(7397), 1, sym_self_referential_reader_macro, - STATE(1848), 1, + STATE(1059), 1, + sym_list_lit, + STATE(1060), 1, sym_sym_lit, - STATE(1925), 1, + STATE(1069), 1, sym__bare_set_lit, - STATE(2154), 1, + STATE(2804), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2258), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2901), 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, + STATE(3024), 1, + sym_array_dimension, + ACTIONS(203), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(852), 2, + ACTIONS(226), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(230), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3922), 3, + ACTIONS(232), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7391), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2101), 19, - sym__form, + STATE(998), 17, 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, @@ -81362,4819 +101469,2188 @@ static const uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80865] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + [78993] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7402), 1, + anon_sym_POUND_, + ACTIONS(7399), 2, + sym__ws, + sym_comment, + STATE(990), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 20, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2624), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2622), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7405), 30, + 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, - STATE(1569), 3, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79063] = 4, + ACTIONS(47), 1, + sym_block_comment, + STATE(995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1878), 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, - [81000] = 35, - ACTIONS(9), 1, + ACTIONS(7409), 23, + sym__ws, + sym_comment, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(830), 1, - anon_sym_LPAREN, - ACTIONS(834), 1, - anon_sym_cl, - ACTIONS(3928), 1, - sym_self_referential_reader_macro, - STATE(927), 1, - sym__bare_set_lit, - STATE(929), 1, - sym_sym_lit, - STATE(2169), 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(75), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(97), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3926), 3, + ACTIONS(7411), 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, + anon_sym_COMMA, sym_fancy_literal, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1569), 3, + 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, + [79128] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7416), 1, + anon_sym_POUND_, + ACTIONS(7413), 2, + sym__ws, + sym_comment, + STATE(993), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(882), 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, - [81135] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(7421), 20, anon_sym_COLON_COLON, - ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, - aux_sym_sym_lit_token1, - ACTIONS(614), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(2134), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3930), 2, - sym__ws, - sym_comment, - ACTIONS(2132), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7419), 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, + anon_sym_COMMA, sym_fancy_literal, - STATE(721), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2330), 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, - [81270] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [79197] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + STATE(995), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7423), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3934), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3932), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7425), 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, + anon_sym_COMMA, sym_fancy_literal, - STATE(1569), 3, + 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, + [79262] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7430), 1, + anon_sym_POUND_, + ACTIONS(7427), 2, + sym__ws, + sym_comment, + STATE(991), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2102), 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, - [81405] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(7435), 20, anon_sym_COLON_COLON, - ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, - aux_sym_sym_lit_token1, - ACTIONS(614), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(2162), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3936), 2, - sym__ws, - sym_comment, - ACTIONS(2160), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7433), 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, + anon_sym_COMMA, sym_fancy_literal, - STATE(723), 3, + 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, + [79331] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7440), 1, + anon_sym_POUND_, + ACTIONS(7437), 2, + sym__ws, + sym_comment, + STATE(995), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2329), 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, - [81540] = 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(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(7407), 20, anon_sym_COLON_COLON, - ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, - aux_sym_sym_lit_token1, - ACTIONS(614), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(2168), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3938), 2, - sym__ws, - sym_comment, - ACTIONS(2166), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7405), 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, + anon_sym_COMMA, sym_fancy_literal, - STATE(726), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2327), 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, - [81675] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [79400] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(7447), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, - aux_sym_sym_lit_token1, - ACTIONS(614), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(2174), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3940), 2, - sym__ws, - sym_comment, - ACTIONS(2172), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7445), 30, + 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, - STATE(728), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2325), 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, - [81810] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79464] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(604), 1, - aux_sym_num_lit_token1, - ACTIONS(606), 1, - anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(7449), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(610), 1, anon_sym_DQUOTE, - ACTIONS(612), 1, - aux_sym_sym_lit_token1, - ACTIONS(614), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(618), 1, - anon_sym_POUND_QMARK, - ACTIONS(620), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, - ACTIONS(622), 1, anon_sym_POUND_SQUOTE, - ACTIONS(624), 1, anon_sym_SQUOTE, - ACTIONS(626), 1, anon_sym_BQUOTE, - ACTIONS(628), 1, anon_sym_COMMA_AT, - ACTIONS(630), 1, - anon_sym_COMMA, - ACTIONS(632), 1, - anon_sym_cl, - ACTIONS(2186), 1, - sym_self_referential_reader_macro, - ACTIONS(3080), 1, - anon_sym_POUND, - STATE(2151), 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(2380), 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(634), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3942), 2, - sym__ws, - sym_comment, - ACTIONS(2184), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7451), 30, + 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, - STATE(733), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2324), 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, - [81945] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7453), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3946), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3944), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7455), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2103), 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, - [82080] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7457), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3952), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3948), 2, - sym__ws, - sym_comment, - ACTIONS(3950), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7459), 30, + 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, - STATE(802), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1975), 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, - [82215] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, - aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(7461), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, - aux_sym_sym_lit_token1, - ACTIONS(486), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(492), 1, - anon_sym_POUND_QMARK, - ACTIONS(494), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(1794), 1, - anon_sym_POUND, - ACTIONS(2186), 1, - sym_self_referential_reader_macro, - 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(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3954), 2, - sym__ws, - sym_comment, - ACTIONS(2184), 3, + ACTIONS(7463), 30, + 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, - STATE(345), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2324), 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, - [82350] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79708] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7465), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3958), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3956), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7467), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1987), 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, - [82485] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7469), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3962), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3960), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7471), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2104), 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, - [82620] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7473), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3968), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3964), 2, - sym__ws, - sym_comment, - ACTIONS(3966), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7475), 30, + 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, - STATE(803), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2105), 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, - [82755] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79891] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7477), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2620), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3970), 2, - sym__ws, - sym_comment, - ACTIONS(2618), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7479), 30, + 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, - STATE(758), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1948), 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, - [82890] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [79952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(472), 1, - aux_sym_num_lit_token1, - ACTIONS(474), 1, - anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(7481), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(484), 1, - aux_sym_sym_lit_token1, - ACTIONS(486), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(492), 1, - anon_sym_POUND_QMARK, - ACTIONS(494), 1, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(1794), 1, - anon_sym_POUND, - ACTIONS(2174), 1, - sym_self_referential_reader_macro, - 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(2454), 1, - sym_sym_lit, - ACTIONS(490), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(512), 2, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3972), 2, - sym__ws, - sym_comment, - ACTIONS(2172), 3, + ACTIONS(7483), 30, + 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, - STATE(389), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2325), 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, - [83025] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7485), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2614), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2612), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7487), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1926), 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, - [83160] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7489), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3976), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3974), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7491), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2088), 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, - [83295] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7493), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3982), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3978), 2, - sym__ws, - sym_comment, - ACTIONS(3980), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7495), 30, + 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, - STATE(776), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 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, - [83430] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7497), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3986), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(3984), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7499), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2079), 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, - [83565] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80257] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7501), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(3992), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3988), 2, - sym__ws, - sym_comment, - ACTIONS(3990), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7503), 30, + 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, - STATE(808), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2059), 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, - [83700] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7505), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2610), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(3994), 2, - sym__ws, - sym_comment, - ACTIONS(2608), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7507), 30, + 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, - STATE(765), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1923), 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_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_finally, + anon_sym_return, + anon_sym_initially, + [80379] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7509), 23, + sym__ws, + sym_comment, 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_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4000), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3996), 2, - sym__ws, - sym_comment, - ACTIONS(3998), 3, + ACTIONS(7511), 30, + 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, - STATE(727), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(212), 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, - [83970] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7513), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2456), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2454), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7515), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1922), 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, - [84105] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80501] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7517), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4004), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4002), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7519), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2046), 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, - [84240] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80562] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7521), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4010), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4006), 2, - sym__ws, - sym_comment, - ACTIONS(4008), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7523), 30, + 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, - STATE(811), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2045), 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, - [84375] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7525), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4014), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4012), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7527), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1990), 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_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_finally, + anon_sym_return, + anon_sym_initially, + [80684] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7529), 23, + sym__ws, + sym_comment, 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_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4020), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4016), 2, - sym__ws, - sym_comment, - ACTIONS(4018), 3, + ACTIONS(7531), 30, + 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, - STATE(730), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1451), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(213), 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, - [84645] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7529), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4024), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4022), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7531), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1991), 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, - [84780] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7533), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4028), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4026), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7535), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2031), 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, - [84915] = 35, - ACTIONS(9), 1, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80867] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7537), 23, + sym__ws, + sym_comment, 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_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7539), 30, + 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, + 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, + [80928] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - ACTIONS(4032), 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, + ACTIONS(7541), 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, - ACTIONS(51), 2, + 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, - ACTIONS(55), 2, + sym_self_referential_reader_macro, 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(4030), 3, + ACTIONS(7543), 30, + 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, - 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(236), 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, - [85050] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [80989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7545), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4038), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(4034), 2, - sym__ws, - sym_comment, - ACTIONS(4036), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7547), 30, + 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, - STATE(403), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2029), 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, - [85185] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [81050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7549), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4042), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4040), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7551), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2028), 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, - [85320] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [81111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7553), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(2420), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2418), 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7555), 30, + 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, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1962), 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, - [85455] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [81172] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_COLON, - ACTIONS(732), 1, + ACTIONS(7557), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, 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_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND0A, + anon_sym_POUND0a, 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(4046), 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, + sym_self_referential_reader_macro, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4044), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2023), 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, - [85590] = 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(4050), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4048), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2022), 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, - [85725] = 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, + ACTIONS(7559), 30, anon_sym_POUND, - ACTIONS(4056), 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(4052), 2, - sym__ws, - sym_comment, - ACTIONS(4054), 3, anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(306), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2021), 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, - [85860] = 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(4060), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4058), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2020), 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, - [85995] = 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(4064), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4062), 3, - anon_sym_DOT, sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2019), 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, - [86130] = 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(4070), 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(4066), 2, - sym__ws, - sym_comment, - ACTIONS(4068), 3, - anon_sym_DOT, - sym_nil_lit, sym_fancy_literal, - STATE(407), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2016), 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, - [86265] = 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(2210), 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(4072), 2, - sym__ws, - sym_comment, - ACTIONS(2208), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(781), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1950), 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, - [86400] = 35, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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_finally, + anon_sym_return, + anon_sym_initially, + [81233] = 3, 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(2204), 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(4074), 2, + ACTIONS(7553), 23, sym__ws, sym_comment, - ACTIONS(2202), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(788), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1949), 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, - [86535] = 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(2190), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2188), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1932), 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, - [86670] = 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(4078), 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_RPAREN, 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(4076), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2011), 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, - [86805] = 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(4084), 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(4080), 2, - sym__ws, - sym_comment, - ACTIONS(4082), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(793), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2003), 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, - [86940] = 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(2048), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(2046), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1875), 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, - [87075] = 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(4088), 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(1450), 2, - sym__ws, - sym_comment, - ACTIONS(4086), 3, + ACTIONS(7555), 30, + anon_sym_POUND, anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1569), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1998), 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, - [87210] = 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, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(732), 1, - anon_sym_COLON_COLON, - ACTIONS(734), 1, - anon_sym_DQUOTE, - ACTIONS(740), 1, + sym_nil_lit, 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(4094), 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(4090), 2, - sym__ws, - sym_comment, - ACTIONS(4092), 3, - anon_sym_DOT, - sym_nil_lit, sym_fancy_literal, - STATE(791), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1997), 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, - [87345] = 6, + 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_finally, + anon_sym_return, + anon_sym_initially, + [81294] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4099), 1, - anon_sym_POUND_, - ACTIONS(4096), 2, + ACTIONS(7557), 23, sym__ws, sym_comment, - STATE(813), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 20, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86195,7 +103671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4102), 29, + ACTIONS(7559), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86206,6 +103682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86225,14 +103702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87414] = 4, + [81355] = 3, ACTIONS(47), 1, sym_block_comment, - STATE(813), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4106), 23, + ACTIONS(7561), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86256,7 +103729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4108), 29, + ACTIONS(7563), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86267,6 +103740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86286,19 +103760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87479] = 6, + [81416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4113), 1, - anon_sym_POUND_, - ACTIONS(4110), 2, + ACTIONS(7565), 23, sym__ws, sym_comment, - STATE(814), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4118), 20, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -86319,7 +103787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4116), 29, + ACTIONS(7567), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86330,6 +103798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86349,14 +103818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87548] = 4, + [81477] = 3, ACTIONS(47), 1, sym_block_comment, - STATE(813), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4120), 23, + ACTIONS(7569), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86380,7 +103845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4122), 29, + ACTIONS(7571), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86391,6 +103856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86410,19 +103876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87613] = 6, + [81538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4127), 1, - anon_sym_POUND_, - ACTIONS(4124), 2, + ACTIONS(7573), 23, sym__ws, sym_comment, - STATE(816), 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, @@ -86443,7 +103903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4130), 29, + ACTIONS(7575), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86454,6 +103914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86473,12 +103934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87682] = 4, + [81599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4138), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 23, + ACTIONS(7577), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86502,7 +103961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4136), 29, + ACTIONS(7579), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86513,6 +103972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86532,10 +103992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87745] = 3, + [81660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 23, + ACTIONS(7581), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86559,7 +104019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4142), 29, + ACTIONS(7583), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86570,6 +104030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86589,10 +104050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87805] = 3, + [81721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7585), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86616,7 +104077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 29, + ACTIONS(7587), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86627,6 +104088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86646,10 +104108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87865] = 3, + [81782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4148), 23, + ACTIONS(7589), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86673,7 +104135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4150), 29, + ACTIONS(7591), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86684,6 +104146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86703,10 +104166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87925] = 3, + [81843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4152), 23, + ACTIONS(7593), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86730,7 +104193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4154), 29, + ACTIONS(7595), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86741,6 +104204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86760,10 +104224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [87985] = 3, + [81904] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 23, + ACTIONS(7589), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86787,7 +104251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4158), 29, + ACTIONS(7591), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86798,6 +104262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86817,10 +104282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88045] = 3, + [81965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 23, + ACTIONS(7597), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86844,7 +104309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4162), 29, + ACTIONS(7599), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86855,6 +104320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86874,10 +104340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88105] = 3, + [82026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 23, + ACTIONS(7601), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86901,7 +104367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4166), 29, + ACTIONS(7603), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86912,6 +104378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86931,10 +104398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88165] = 3, + [82087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 23, + ACTIONS(7597), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -86958,7 +104425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4170), 29, + ACTIONS(7599), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -86969,6 +104436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -86988,10 +104456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88225] = 3, + [82148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 23, + ACTIONS(7605), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87015,7 +104483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4174), 29, + ACTIONS(7607), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87026,6 +104494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87045,10 +104514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88285] = 3, + [82209] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 23, + ACTIONS(7609), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87072,7 +104541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 29, + ACTIONS(7611), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87083,6 +104552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87102,10 +104572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88345] = 3, + [82270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(7613), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87129,7 +104599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 29, + ACTIONS(7615), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87140,6 +104610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87159,14 +104630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88405] = 3, + [82331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 23, + ACTIONS(7621), 1, + anon_sym_COLON, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -87186,17 +104660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4186), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87216,10 +104690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88465] = 3, + [82396] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 23, + ACTIONS(7626), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87243,7 +104717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4190), 29, + ACTIONS(7628), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87254,6 +104728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87273,10 +104748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88525] = 3, + [82457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87300,7 +104775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4194), 29, + ACTIONS(7632), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87311,6 +104786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87330,10 +104806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88585] = 3, + [82518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 23, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87357,7 +104833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4198), 29, + ACTIONS(7636), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87368,6 +104844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87387,10 +104864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88645] = 3, + [82579] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 23, + ACTIONS(7638), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87414,7 +104891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4202), 29, + ACTIONS(7640), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87425,6 +104902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87444,10 +104922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88705] = 3, + [82640] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 23, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87471,7 +104949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4206), 29, + ACTIONS(7644), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87482,6 +104960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87501,10 +104980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88765] = 3, + [82701] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 23, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87528,7 +105007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4210), 29, + ACTIONS(7527), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87539,6 +105018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87558,10 +105038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88825] = 3, + [82762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87585,7 +105065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4214), 29, + ACTIONS(7648), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87596,6 +105076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87615,10 +105096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88885] = 3, + [82823] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 23, + ACTIONS(7650), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87642,7 +105123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4218), 29, + ACTIONS(7652), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87653,6 +105134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87672,10 +105154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [88945] = 3, + [82884] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 23, + ACTIONS(7654), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87699,7 +105181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4222), 29, + ACTIONS(7656), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87710,6 +105192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87729,10 +105212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89005] = 3, + [82945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4224), 23, + ACTIONS(7489), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87756,7 +105239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4226), 29, + ACTIONS(7491), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87767,6 +105250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87786,10 +105270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89065] = 3, + [83006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87813,7 +105297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4230), 29, + ACTIONS(7660), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87824,6 +105308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87843,10 +105328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89125] = 3, + [83067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4232), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87870,7 +105355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4234), 29, + ACTIONS(7664), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87881,6 +105366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87900,10 +105386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89185] = 3, + [83128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87927,7 +105413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4238), 29, + ACTIONS(7668), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87938,6 +105424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -87957,10 +105444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89245] = 3, + [83189] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -87984,7 +105471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4242), 29, + ACTIONS(7672), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -87995,6 +105482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88014,10 +105502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89305] = 3, + [83250] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 23, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88041,7 +105529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4246), 29, + ACTIONS(7527), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88052,6 +105540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88071,14 +105560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89365] = 3, + [83311] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7674), 1, + anon_sym_COLON, + ACTIONS(7453), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -88098,17 +105590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4250), 29, + ACTIONS(7455), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88128,10 +105620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89425] = 3, + [83376] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88155,7 +105647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4254), 29, + ACTIONS(7678), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88166,6 +105658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88185,10 +105678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89485] = 3, + [83437] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88212,7 +105705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4258), 29, + ACTIONS(7682), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88223,6 +105716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88242,10 +105736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89545] = 3, + [83498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88269,7 +105763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4262), 29, + ACTIONS(7686), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88280,6 +105774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88299,10 +105794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89605] = 3, + [83559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 23, + ACTIONS(7688), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88326,7 +105821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4266), 29, + ACTIONS(7690), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88337,6 +105832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88356,10 +105852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89665] = 3, + [83620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88383,7 +105879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4270), 29, + ACTIONS(7694), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88394,6 +105890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88413,10 +105910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89725] = 3, + [83681] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88440,7 +105937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4230), 29, + ACTIONS(7698), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88451,6 +105948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88470,10 +105968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89785] = 3, + [83742] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4272), 23, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88497,7 +105995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4274), 29, + ACTIONS(7702), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88508,6 +106006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88527,10 +106026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89845] = 3, + [83803] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88554,7 +106053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4278), 29, + ACTIONS(7698), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88565,6 +106064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88584,10 +106084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89905] = 3, + [83864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 23, + ACTIONS(7704), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88611,7 +106111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4282), 29, + ACTIONS(7706), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88622,6 +106122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88641,10 +106142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [89965] = 3, + [83925] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4284), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88668,7 +106169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4286), 29, + ACTIONS(7710), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88679,6 +106180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88698,10 +106200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90025] = 3, + [83986] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 23, + ACTIONS(7712), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88725,7 +106227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4290), 29, + ACTIONS(7714), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88736,6 +106238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88755,10 +106258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90085] = 3, + [84047] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88782,7 +106285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4294), 29, + ACTIONS(7682), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88793,6 +106296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88812,14 +106316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90145] = 3, + [84108] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7674), 1, + anon_sym_COLON, + ACTIONS(7716), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -88839,17 +106346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4298), 29, + ACTIONS(7718), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88869,14 +106376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90205] = 3, + [84173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7674), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -88896,17 +106406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4302), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88926,10 +106436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90265] = 3, + [84238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -88953,7 +106463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4302), 29, + ACTIONS(7694), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -88964,6 +106474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -88983,10 +106494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90325] = 3, + [84299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89010,7 +106521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4306), 29, + ACTIONS(7698), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89021,6 +106532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89040,10 +106552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90385] = 3, + [84360] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89067,7 +106579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4310), 29, + ACTIONS(7698), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89078,6 +106590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89097,10 +106610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90445] = 3, + [84421] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 23, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89124,7 +106637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4314), 29, + ACTIONS(7722), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89135,6 +106648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89154,10 +106668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90505] = 3, + [84482] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 23, + ACTIONS(7724), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89181,7 +106695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4318), 29, + ACTIONS(7726), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89192,6 +106706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89211,10 +106726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90565] = 3, + [84543] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89238,7 +106753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4314), 29, + ACTIONS(7730), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89249,6 +106764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89268,10 +106784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90625] = 3, + [84604] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4320), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89295,7 +106811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4322), 29, + ACTIONS(7734), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89306,6 +106822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89325,10 +106842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90685] = 3, + [84665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89352,7 +106869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4318), 29, + ACTIONS(7738), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89363,6 +106880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89382,10 +106900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90745] = 3, + [84726] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89409,7 +106927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4326), 29, + ACTIONS(7742), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89420,6 +106938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89439,10 +106958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90805] = 3, + [84787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89466,7 +106985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4330), 29, + ACTIONS(7746), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89477,6 +106996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89496,10 +107016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90865] = 3, + [84848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89523,7 +107043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4334), 29, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89534,6 +107054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89553,10 +107074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90925] = 3, + [84909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4336), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89580,7 +107101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4338), 29, + ACTIONS(7746), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89591,6 +107112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89610,10 +107132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [90985] = 3, + [84970] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4340), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89637,7 +107159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4342), 29, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89648,6 +107170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89667,10 +107190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91045] = 3, + [85031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4344), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89694,7 +107217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4346), 29, + ACTIONS(7754), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89705,6 +107228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89724,14 +107248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91105] = 3, + [85092] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4348), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7756), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -89751,17 +107278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4350), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89781,10 +107308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91165] = 3, + [85157] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4352), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89808,7 +107335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4354), 29, + ACTIONS(7738), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89819,6 +107346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89838,10 +107366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91225] = 3, + [85218] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 23, + ACTIONS(7759), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89865,7 +107393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4358), 29, + ACTIONS(7761), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89876,6 +107404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89895,14 +107424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91285] = 3, + [85279] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7763), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -89922,17 +107454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4362), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -89952,10 +107484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91345] = 3, + [85344] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -89979,7 +107511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4366), 29, + ACTIONS(7746), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -89990,6 +107522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90009,10 +107542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91405] = 3, + [85405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4368), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90036,7 +107569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4370), 29, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90047,6 +107580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90066,10 +107600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91465] = 3, + [85466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90093,7 +107627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 29, + ACTIONS(7746), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90104,6 +107638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90123,10 +107658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91525] = 3, + [85527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90150,7 +107685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4362), 29, + ACTIONS(7750), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90161,6 +107696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90180,10 +107716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91585] = 3, + [85588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90207,7 +107743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4374), 29, + ACTIONS(7754), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90218,6 +107754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90237,10 +107774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91645] = 3, + [85649] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4376), 23, + ACTIONS(7766), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90264,7 +107801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4378), 29, + ACTIONS(7768), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90275,6 +107812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90294,10 +107832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91705] = 3, + [85710] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4380), 23, + ACTIONS(7770), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90321,7 +107859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4382), 29, + ACTIONS(7772), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90332,6 +107870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90351,10 +107890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91765] = 3, + [85771] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90378,7 +107917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4374), 29, + ACTIONS(7776), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90389,6 +107928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90408,10 +107948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91825] = 3, + [85832] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4384), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90435,7 +107975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4386), 29, + ACTIONS(7776), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90446,6 +107986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90465,10 +108006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91885] = 3, + [85893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 23, + ACTIONS(7778), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90492,7 +108033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4390), 29, + ACTIONS(7780), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90503,6 +108044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90522,10 +108064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [91945] = 3, + [85954] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 23, + ACTIONS(7782), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90549,7 +108091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4394), 29, + ACTIONS(7784), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90560,6 +108102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90579,10 +108122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92005] = 3, + [86015] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 23, + ACTIONS(7786), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90606,7 +108149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4294), 29, + ACTIONS(7788), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90617,6 +108160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90636,10 +108180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92065] = 3, + [86076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90663,7 +108207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4398), 29, + ACTIONS(7776), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90674,6 +108218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90693,10 +108238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92125] = 3, + [86137] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90720,7 +108265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4402), 29, + ACTIONS(7776), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90731,6 +108276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90750,10 +108296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92185] = 3, + [86198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4404), 23, + ACTIONS(7778), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90777,7 +108323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4406), 29, + ACTIONS(7780), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90788,6 +108334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90807,10 +108354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92245] = 3, + [86259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 23, + ACTIONS(7790), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90834,7 +108381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4410), 29, + ACTIONS(7792), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90845,6 +108392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90864,10 +108412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92305] = 3, + [86320] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 23, + ACTIONS(7786), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90891,7 +108439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4414), 29, + ACTIONS(7788), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90902,6 +108450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90921,10 +108470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92365] = 3, + [86381] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 23, + ACTIONS(7794), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -90948,7 +108497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4418), 29, + ACTIONS(7796), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -90959,6 +108508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -90978,10 +108528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92425] = 3, + [86442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 23, + ACTIONS(7794), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91005,7 +108555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4422), 29, + ACTIONS(7796), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91016,6 +108566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91035,14 +108586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92485] = 3, + [86503] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7798), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91062,17 +108616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4426), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91092,10 +108646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92545] = 3, + [86568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4428), 23, + ACTIONS(7801), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91119,7 +108673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4430), 29, + ACTIONS(7803), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91130,6 +108684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91149,10 +108704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92605] = 3, + [86629] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 23, + ACTIONS(7805), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91176,7 +108733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4434), 29, + ACTIONS(7445), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91206,14 +108763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92665] = 3, + [86692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7807), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91233,17 +108793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4434), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91263,14 +108823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92725] = 3, + [86757] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7810), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91290,17 +108853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4418), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91320,10 +108883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92785] = 3, + [86822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 23, + ACTIONS(7813), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91347,7 +108910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4422), 29, + ACTIONS(7815), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91358,6 +108921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91377,10 +108941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92845] = 3, + [86883] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 23, + ACTIONS(7817), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91404,7 +108968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4434), 29, + ACTIONS(7819), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91415,6 +108979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91434,14 +108999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92905] = 3, + [86944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7821), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91461,17 +109029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4438), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91491,10 +109059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [92965] = 3, + [87009] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(7824), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91518,7 +109086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 29, + ACTIONS(7826), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91529,6 +109097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91548,14 +109117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93025] = 3, + [87070] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7828), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91575,17 +109147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4434), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91605,10 +109177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93085] = 3, + [87135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 23, + ACTIONS(7831), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91632,7 +109204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4446), 29, + ACTIONS(7833), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91643,6 +109215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91662,10 +109235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93145] = 3, + [87196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4448), 23, + ACTIONS(7835), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91689,7 +109262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4450), 29, + ACTIONS(7837), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91700,6 +109273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91719,10 +109293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93205] = 3, + [87257] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4452), 23, + ACTIONS(7839), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91746,7 +109320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4454), 29, + ACTIONS(7841), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91757,6 +109331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91776,14 +109351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93265] = 3, + [87318] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 23, + ACTIONS(7624), 1, + anon_sym_COLON_COLON, + ACTIONS(7843), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -91803,17 +109381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4458), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91833,10 +109411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93325] = 3, + [87383] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7846), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91860,7 +109438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 29, + ACTIONS(7848), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91871,6 +109449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91890,10 +109469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93385] = 3, + [87444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(7850), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -91917,7 +109496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(7852), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91928,6 +109507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -91947,14 +109527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93445] = 5, + [87505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 1, - anon_sym_COLON, - ACTIONS(4470), 1, + ACTIONS(7624), 1, anon_sym_COLON_COLON, - ACTIONS(4464), 22, + ACTIONS(7854), 1, + anon_sym_COLON, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -91977,7 +109557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 28, + ACTIONS(7619), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -91987,6 +109567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -92006,71 +109587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93509] = 3, + [87570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7624), 1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4474), 29, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(7857), 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, - 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, - [93569] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92090,17 +109617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -92120,10 +109647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93629] = 3, + [87635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(7860), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92147,7 +109674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(7862), 30, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92158,6 +109685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -92177,71 +109705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93689] = 3, + [87696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7624), 1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(4478), 29, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(7864), 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, - 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, - [93749] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4464), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92261,17 +109735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 29, + ACTIONS(7619), 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, anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -92291,10 +109765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93809] = 3, + [87761] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92318,7 +109792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 29, + ACTIONS(7644), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92348,10 +109822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93869] = 3, + [87821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 23, + ACTIONS(7589), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92375,7 +109849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4486), 29, + ACTIONS(7591), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92405,10 +109879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93929] = 3, + [87881] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 23, + ACTIONS(7613), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92432,7 +109906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4458), 29, + ACTIONS(7615), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92462,10 +109936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [93989] = 3, + [87941] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 23, + ACTIONS(7601), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92489,7 +109963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4402), 29, + ACTIONS(7603), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92519,10 +109993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94049] = 3, + [88001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(7593), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92546,7 +110020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(7595), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92576,10 +110050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94109] = 3, + [88061] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(7581), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92603,7 +110077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 29, + ACTIONS(7583), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92633,10 +110107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94169] = 3, + [88121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 23, + ACTIONS(7565), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92660,7 +110134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4462), 29, + ACTIONS(7567), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92690,10 +110164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94229] = 3, + [88181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 23, + ACTIONS(7545), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92717,7 +110191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4490), 29, + ACTIONS(7547), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92747,10 +110221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94289] = 3, + [88241] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 23, + ACTIONS(7541), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92774,7 +110248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4494), 29, + ACTIONS(7543), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92804,17 +110278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94349] = 5, + [88301] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 1, - anon_sym_COLON, - ACTIONS(4470), 1, - anon_sym_COLON_COLON, - ACTIONS(4496), 22, + ACTIONS(7533), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92834,10 +110305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 28, + ACTIONS(7535), 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, @@ -92863,17 +110335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94413] = 5, + [88361] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4468), 1, - anon_sym_COLON, - ACTIONS(4470), 1, - anon_sym_COLON_COLON, - ACTIONS(4500), 22, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92893,10 +110362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 28, + ACTIONS(7527), 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, @@ -92922,10 +110392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94477] = 3, + [88421] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 23, + ACTIONS(7521), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92949,7 +110419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4478), 29, + ACTIONS(7523), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92979,10 +110449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94537] = 3, + [88481] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 23, + ACTIONS(7513), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93006,7 +110476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4486), 29, + ACTIONS(7515), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93036,10 +110506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94597] = 3, + [88541] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 23, + ACTIONS(7509), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93063,7 +110533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4506), 29, + ACTIONS(7511), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93093,10 +110563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94657] = 3, + [88601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(7505), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93120,7 +110590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(7507), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93150,10 +110620,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94717] = 3, + [88661] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7870), 1, + anon_sym_POUND_, + ACTIONS(7867), 2, + sym__ws, + sym_comment, + STATE(1147), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 20, + 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(7405), 26, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [88727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(7501), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93177,7 +110707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(7503), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93207,10 +110737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94777] = 3, + [88787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4512), 23, + ACTIONS(7497), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93234,7 +110764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4514), 29, + ACTIONS(7499), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93264,10 +110794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94837] = 3, + [88847] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 23, + ACTIONS(7485), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93291,7 +110821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4426), 29, + ACTIONS(7487), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93321,10 +110851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94897] = 3, + [88907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4516), 23, + ACTIONS(7481), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93348,7 +110878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4518), 29, + ACTIONS(7483), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93378,10 +110908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [94957] = 3, + [88967] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(7477), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93405,7 +110935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(7479), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93435,10 +110965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95017] = 3, + [89027] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(7473), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93462,7 +110992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 29, + ACTIONS(7475), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93492,24 +111022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95077] = 6, + [89087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4523), 1, - anon_sym_POUND_, - ACTIONS(4520), 2, + ACTIONS(7469), 23, sym__ws, sym_comment, - STATE(941), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 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, @@ -93517,7 +111042,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, @@ -93525,7 +111049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4102), 25, + ACTIONS(7471), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93536,71 +111060,12 @@ 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, - [95142] = 12, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4529), 1, - anon_sym_POUND_, - ACTIONS(4534), 1, - anon_sym_cl, - ACTIONS(4537), 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(4526), 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(4532), 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_do, anon_sym_while, anon_sym_until, anon_sym_repeat, @@ -93614,56 +111079,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95217] = 12, + [89147] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4542), 1, - anon_sym_POUND_, - ACTIONS(4547), 1, - anon_sym_cl, - ACTIONS(4556), 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(4539), 2, + ACTIONS(7465), 23, sym__ws, sym_comment, - ACTIONS(4550), 2, - anon_sym_in, - anon_sym_being, - STATE(2128), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4553), 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(4545), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7467), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93677,56 +111136,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95292] = 12, + [89207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4561), 1, - anon_sym_POUND_, - ACTIONS(4566), 1, - anon_sym_cl, - ACTIONS(4569), 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(4558), 2, + ACTIONS(7461), 23, 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(4564), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7463), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93740,56 +111193,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95367] = 12, + [89267] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4574), 1, - anon_sym_POUND_, - ACTIONS(4579), 1, - anon_sym_cl, - ACTIONS(4582), 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(4571), 2, + ACTIONS(7457), 23, 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(4577), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7459), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93803,56 +111250,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95442] = 12, + [89327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4587), 1, - anon_sym_POUND_, - ACTIONS(4592), 1, - anon_sym_cl, - ACTIONS(4595), 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(4584), 2, + ACTIONS(7688), 23, 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(4590), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7690), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93866,56 +111307,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95517] = 12, + [89387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4600), 1, - anon_sym_POUND_, - ACTIONS(4605), 1, - anon_sym_cl, - ACTIONS(4608), 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(4597), 2, + ACTIONS(7654), 23, 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(4603), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7656), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93929,56 +111364,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95592] = 12, + [89447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4574), 1, - anon_sym_POUND_, - ACTIONS(4579), 1, - anon_sym_cl, - ACTIONS(4582), 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(4571), 2, + ACTIONS(7712), 23, 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(4577), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7714), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -93992,56 +111421,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95667] = 12, + [89507] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4561), 1, - anon_sym_POUND_, - ACTIONS(4566), 1, - anon_sym_cl, - ACTIONS(4569), 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(4558), 2, + ACTIONS(7724), 23, 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(4564), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7726), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94055,56 +111478,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95742] = 12, + [89567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4613), 1, - anon_sym_POUND_, - ACTIONS(4618), 1, - anon_sym_cl, - ACTIONS(4621), 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(4610), 2, + ACTIONS(7759), 23, 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(4616), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7761), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94118,56 +111535,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95817] = 12, + [89627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4626), 1, - anon_sym_POUND_, - ACTIONS(4631), 1, - anon_sym_cl, - ACTIONS(4634), 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(4623), 2, + ACTIONS(7782), 23, 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(4629), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7784), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94181,12 +111592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [95892] = 4, + [89687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4636), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 23, + ACTIONS(7801), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94195,6 +111604,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, @@ -94202,7 +111612,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, @@ -94210,7 +111619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4136), 25, + ACTIONS(7803), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94221,71 +111630,69 @@ 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, - [95951] = 12, + 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, + [89747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4641), 1, - anon_sym_POUND_, - ACTIONS(4646), 1, - anon_sym_cl, - ACTIONS(4649), 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(4638), 2, + ACTIONS(7846), 23, 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(4644), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7848), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94299,56 +111706,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96026] = 12, + [89807] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4641), 1, - anon_sym_POUND_, - ACTIONS(4646), 1, - anon_sym_cl, - ACTIONS(4649), 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(4638), 2, + ACTIONS(7650), 23, 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(4644), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7652), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94362,56 +111763,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96101] = 12, + [89867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4529), 1, - anon_sym_POUND_, - ACTIONS(4534), 1, - anon_sym_cl, - ACTIONS(4537), 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(4526), 2, + ACTIONS(7860), 23, 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(4532), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7862), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94425,56 +111820,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96176] = 12, + [89927] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4654), 1, - anon_sym_POUND_, - ACTIONS(4659), 1, - anon_sym_cl, - ACTIONS(4662), 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(4651), 2, + ACTIONS(7850), 23, 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(4657), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7852), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94488,56 +111877,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96251] = 12, + [89987] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4667), 1, - anon_sym_POUND_, - ACTIONS(4672), 1, - anon_sym_cl, - ACTIONS(4675), 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(4664), 2, + ACTIONS(7839), 23, 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(4670), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7841), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94551,56 +111934,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96326] = 12, + [90047] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4680), 1, - anon_sym_POUND_, - ACTIONS(4685), 1, - anon_sym_cl, - ACTIONS(4688), 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(4677), 2, + ACTIONS(7835), 23, 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(4683), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7837), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94614,56 +111991,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96401] = 12, + [90107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4654), 1, - anon_sym_POUND_, - ACTIONS(4659), 1, - anon_sym_cl, - ACTIONS(4662), 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(4651), 2, + ACTIONS(7831), 23, 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(4657), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7833), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94677,56 +112048,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96476] = 12, + [90167] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4613), 1, + ACTIONS(7824), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4618), 1, - anon_sym_cl, - ACTIONS(4621), 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(4610), 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(4616), 22, + 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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7826), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94740,56 +112105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96551] = 12, + [90227] = 3, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(7817), 23, 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_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_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(7819), 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, + anon_sym_COMMA, + sym_fancy_literal, + 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, @@ -94803,10 +112162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [96626] = 3, + [90287] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 23, + ACTIONS(7813), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94815,6 +112174,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, @@ -94822,7 +112182,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, @@ -94830,7 +112189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4242), 25, + ACTIONS(7815), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94841,25 +112200,29 @@ 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, - [96682] = 3, + 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, + [90347] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 23, + ACTIONS(7790), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94868,6 +112231,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, @@ -94875,7 +112239,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, @@ -94883,7 +112246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4438), 25, + ACTIONS(7792), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94894,177 +112257,29 @@ 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, - [96738] = 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(4711), 1, - anon_sym_RPAREN, - ACTIONS(4713), 1, - anon_sym_cl, - ACTIONS(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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(4703), 2, - sym__ws, - sym_comment, - ACTIONS(4717), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(4725), 2, anon_sym_while, anon_sym_until, - 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(965), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [96840] = 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(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, + [90407] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 23, + ACTIONS(7766), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95073,6 +112288,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, @@ -95080,7 +112296,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, @@ -95088,7 +112303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4330), 25, + ACTIONS(7768), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95099,101 +112314,29 @@ 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, - [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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4741), 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(4739), 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(969), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [97100] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [90467] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 23, + ACTIONS(7676), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95202,6 +112345,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, @@ -95209,7 +112353,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, @@ -95217,7 +112360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4318), 25, + ACTIONS(7678), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95228,329 +112371,86 @@ 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, - [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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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(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_repeat, 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, - [97258] = 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(4747), 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(4745), 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(1058), 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, - [97360] = 26, + [90527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(7489), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4707), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + 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, + ACTIONS(7491), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4751), 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(4749), 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(979), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [97462] = 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(4755), 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(4753), 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(1154), 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, - [97564] = 3, + [90587] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4384), 23, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95559,6 +112459,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, @@ -95566,7 +112467,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, @@ -95574,7 +112474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4386), 25, + ACTIONS(7636), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95585,25 +112485,29 @@ 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, - [97620] = 3, + 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, + [90647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 23, + ACTIONS(7489), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95612,6 +112516,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, @@ -95619,7 +112524,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, @@ -95627,7 +112531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4314), 25, + ACTIONS(7491), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95638,25 +112542,29 @@ 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, - [97676] = 3, + 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, + [90707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 23, + ACTIONS(7493), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95665,6 +112573,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, @@ -95672,7 +112581,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, @@ -95680,7 +112588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4318), 25, + ACTIONS(7495), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95691,101 +112599,29 @@ 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, - [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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4751), 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_repeat, 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, - [97834] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [90767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 23, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95794,6 +112630,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, @@ -95801,7 +112638,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, @@ -95809,7 +112645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4314), 25, + ACTIONS(7527), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95820,25 +112656,29 @@ 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, - [97890] = 3, + 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, + [90827] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 23, + ACTIONS(7517), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95847,6 +112687,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, @@ -95854,7 +112695,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, @@ -95862,7 +112702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4310), 25, + ACTIONS(7519), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95873,177 +112713,29 @@ 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, - [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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4757), 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_repeat, 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, - [98048] = 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(4757), 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(4759), 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(982), 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, - [98150] = 3, + [90887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 23, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96052,6 +112744,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, @@ -96059,7 +112752,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, @@ -96067,7 +112759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4374), 25, + ACTIONS(7742), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96078,101 +112770,29 @@ 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, - [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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4761), 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_repeat, 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, - [98308] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [90947] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 23, + ACTIONS(7529), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96181,6 +112801,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, @@ -96188,7 +112809,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, @@ -96196,7 +112816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4306), 25, + ACTIONS(7531), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96207,25 +112827,29 @@ 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, - [98364] = 3, + 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, + [91007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 23, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96234,6 +112858,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, @@ -96241,7 +112866,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, @@ -96249,7 +112873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4302), 25, + ACTIONS(7648), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96260,25 +112884,29 @@ 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, - [98420] = 3, + 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, + [91067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4348), 23, + ACTIONS(7529), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96287,6 +112915,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, @@ -96294,7 +112923,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, @@ -96302,7 +112930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4350), 25, + ACTIONS(7531), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96313,33 +112941,41 @@ 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, - [98476] = 3, + 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, + [91127] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 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, @@ -96347,7 +112983,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, @@ -96355,44 +112990,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4334), 25, + ACTIONS(7619), 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, 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, + 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, + [91191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 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, @@ -96400,7 +113042,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, @@ -96408,112 +113049,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4302), 25, + ACTIONS(7718), 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, 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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4763), 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_repeat, 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, - [98690] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91255] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 23, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96522,6 +113090,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, @@ -96529,7 +113098,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, @@ -96537,7 +113105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4298), 25, + ACTIONS(7710), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96548,25 +113116,29 @@ 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, - [98746] = 3, + 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, + [91315] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 23, + ACTIONS(7704), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96575,6 +113147,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, @@ -96582,7 +113155,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, @@ -96590,7 +113162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4278), 25, + ACTIONS(7706), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96601,25 +113173,29 @@ 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, - [98802] = 3, + 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, + [91375] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 23, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96628,6 +113204,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, @@ -96635,7 +113212,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, @@ -96643,7 +113219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4230), 25, + ACTIONS(7702), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96654,25 +113230,29 @@ 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, - [98858] = 3, + 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, + [91435] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 23, + ACTIONS(7449), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96681,6 +113261,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, @@ -96688,7 +113269,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, @@ -96696,7 +113276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4230), 25, + ACTIONS(7451), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96707,253 +113287,29 @@ 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, - [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(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(4763), 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(4765), 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(1065), 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, - [99016] = 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_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4769), 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(4767), 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(999), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [99118] = 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(4773), 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(4771), 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(988), 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, - [99220] = 3, + [91495] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 23, + ACTIONS(7537), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -96962,6 +113318,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, @@ -96969,7 +113326,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, @@ -96977,7 +113333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4206), 25, + ACTIONS(7539), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -96988,101 +113344,29 @@ 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, - [99276] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4773), 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_repeat, 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, - [99378] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 23, + ACTIONS(7549), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97091,6 +113375,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, @@ -97098,7 +113383,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, @@ -97106,7 +113390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4166), 25, + ACTIONS(7551), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97117,101 +113401,29 @@ 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, - [99434] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4775), 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_repeat, 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, - [99536] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 23, + ACTIONS(7453), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97220,6 +113432,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, @@ -97227,7 +113440,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, @@ -97235,7 +113447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4182), 25, + ACTIONS(7455), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97246,177 +113458,29 @@ 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, - [99592] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4775), 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(4777), 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(1004), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [99694] = 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(4781), 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(4779), 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(1006), 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, - [99796] = 3, + [91675] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 23, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97425,6 +113489,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, @@ -97432,7 +113497,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, @@ -97440,7 +113504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4218), 25, + ACTIONS(7660), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97451,101 +113515,29 @@ 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, - [99852] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4781), 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_repeat, 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, - [99954] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 23, + ACTIONS(7553), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97554,6 +113546,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, @@ -97561,7 +113554,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, @@ -97569,7 +113561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4198), 25, + ACTIONS(7555), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97580,101 +113572,29 @@ 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, - [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(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4783), 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_repeat, 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, - [100112] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [91795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 23, + ACTIONS(7557), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97683,6 +113603,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, @@ -97690,7 +113611,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, @@ -97698,7 +113618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4202), 25, + ACTIONS(7559), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97709,25 +113629,29 @@ 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, - [100168] = 3, + 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, + [91855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4516), 23, + ACTIONS(7553), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97736,6 +113660,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, @@ -97743,7 +113668,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, @@ -97751,7 +113675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4518), 25, + ACTIONS(7555), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97762,177 +113686,29 @@ 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, - [100224] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4783), 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(4785), 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(1010), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [100326] = 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(4787), 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, - [100428] = 3, + [91915] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4148), 23, + ACTIONS(7557), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97941,6 +113717,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, @@ -97948,7 +113725,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, @@ -97956,7 +113732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4150), 25, + ACTIONS(7559), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -97967,25 +113743,29 @@ 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, - [100484] = 3, + 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, + [91975] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 23, + ACTIONS(7561), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -97994,6 +113774,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, @@ -98001,7 +113782,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, @@ -98009,7 +113789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4158), 25, + ACTIONS(7563), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98020,101 +113800,29 @@ 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, - [100540] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4791), 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(4789), 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(1050), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [100642] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [92035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 23, + ACTIONS(7569), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98123,6 +113831,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, @@ -98130,7 +113839,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, @@ -98138,7 +113846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4162), 25, + ACTIONS(7571), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98149,25 +113857,29 @@ 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, - [100698] = 3, + 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, + [92095] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 23, + ACTIONS(7573), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98176,6 +113888,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, @@ -98183,7 +113896,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, @@ -98191,7 +113903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4174), 25, + ACTIONS(7575), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98202,25 +113914,29 @@ 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, - [100754] = 3, + 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, + [92155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 23, + ACTIONS(7577), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98229,6 +113945,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, @@ -98236,7 +113953,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, @@ -98244,7 +113960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4178), 25, + ACTIONS(7579), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98255,25 +113971,29 @@ 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, - [100810] = 3, + 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, + [92215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4152), 23, + ACTIONS(7585), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98282,6 +114002,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, @@ -98289,7 +114010,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, @@ -98297,7 +114017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4154), 25, + ACTIONS(7587), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98308,25 +114028,29 @@ 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, - [100866] = 3, + 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, + [92275] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 23, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98335,6 +114059,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, @@ -98342,7 +114067,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, @@ -98350,7 +114074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4170), 25, + ACTIONS(7632), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98361,25 +114085,29 @@ 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, - [100922] = 3, + 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, + [92335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 23, + ACTIONS(7589), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98388,6 +114116,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, @@ -98395,7 +114124,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, @@ -98403,7 +114131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4186), 25, + ACTIONS(7591), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98414,25 +114142,29 @@ 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, - [100978] = 3, + 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, + [92395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 23, + ACTIONS(7597), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98441,6 +114173,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, @@ -98448,7 +114181,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, @@ -98456,7 +114188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4190), 25, + ACTIONS(7599), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98467,101 +114199,29 @@ 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, - [101034] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4793), 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_repeat, 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, - [101136] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [92455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 23, + ACTIONS(7597), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98570,6 +114230,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, @@ -98577,7 +114238,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, @@ -98585,7 +114245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4194), 25, + ACTIONS(7599), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98596,25 +114256,29 @@ 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, - [101192] = 3, + 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, + [92515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 23, + ACTIONS(7605), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98623,6 +114287,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, @@ -98630,7 +114295,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, @@ -98638,7 +114302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4210), 25, + ACTIONS(7607), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98649,25 +114313,29 @@ 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, - [101248] = 3, + 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, + [92575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4344), 23, + ACTIONS(7609), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98676,6 +114344,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, @@ -98683,7 +114352,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, @@ -98691,7 +114359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4346), 25, + ACTIONS(7611), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98702,25 +114370,29 @@ 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, - [101304] = 3, + 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, + [92635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 23, + ACTIONS(7626), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98729,6 +114401,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, @@ -98736,7 +114409,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, @@ -98744,7 +114416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4214), 25, + ACTIONS(7628), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98755,25 +114427,29 @@ 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, - [101360] = 3, + 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, + [92695] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 23, + ACTIONS(7638), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98782,6 +114458,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, @@ -98789,7 +114466,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, @@ -98797,7 +114473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4222), 25, + ACTIONS(7640), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98808,25 +114484,29 @@ 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, - [101416] = 3, + 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, + [92755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4224), 23, + ACTIONS(7670), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98835,6 +114515,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, @@ -98842,7 +114523,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, @@ -98850,7 +114530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4226), 25, + ACTIONS(7672), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98861,25 +114541,29 @@ 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, - [101472] = 3, + 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, + [92815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4232), 23, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98888,6 +114572,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, @@ -98895,7 +114580,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, @@ -98903,7 +114587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4234), 25, + ACTIONS(7686), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98914,25 +114598,29 @@ 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, - [101528] = 3, + 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, + [92875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98941,6 +114629,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, @@ -98948,7 +114637,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, @@ -98956,7 +114644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4238), 25, + ACTIONS(7682), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98967,33 +114655,41 @@ 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, - [101584] = 3, + 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, + [92935] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 23, + ACTIONS(7873), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 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, @@ -99001,7 +114697,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, @@ -99009,36 +114704,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4250), 25, + ACTIONS(7455), 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, 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, - [101640] = 3, + 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, + [92999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 23, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99047,6 +114745,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, @@ -99054,7 +114753,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, @@ -99062,7 +114760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4254), 25, + ACTIONS(7527), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99073,25 +114771,29 @@ 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, - [101696] = 3, + 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, + [93059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99100,6 +114802,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, @@ -99107,7 +114810,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, @@ -99115,7 +114817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4258), 25, + ACTIONS(7694), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99126,25 +114828,29 @@ 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, - [101752] = 3, + 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, + [93119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99153,6 +114859,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, @@ -99160,7 +114867,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, @@ -99168,7 +114874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4262), 25, + ACTIONS(7698), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99179,25 +114885,29 @@ 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, - [101808] = 3, + 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, + [93179] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99206,6 +114916,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, @@ -99213,7 +114924,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, @@ -99221,7 +114931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4266), 25, + ACTIONS(7698), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99232,25 +114942,29 @@ 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, - [101864] = 3, + 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, + [93239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 23, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99259,6 +114973,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, @@ -99266,7 +114981,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, @@ -99274,7 +114988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4270), 25, + ACTIONS(7664), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99285,25 +114999,29 @@ 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, - [101920] = 3, + 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, + [93299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4272), 23, + ACTIONS(7680), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99312,6 +115030,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, @@ -99319,7 +115038,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, @@ -99327,7 +115045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4274), 25, + ACTIONS(7682), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99338,25 +115056,29 @@ 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, - [101976] = 3, + 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, + [93359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4284), 23, + ACTIONS(7692), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99365,6 +115087,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, @@ -99372,7 +115095,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, @@ -99380,7 +115102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4286), 25, + ACTIONS(7694), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99391,25 +115113,29 @@ 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, - [102032] = 3, + 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, + [93419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99418,6 +115144,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, @@ -99425,7 +115152,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, @@ -99433,7 +115159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4290), 25, + ACTIONS(7698), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99444,25 +115170,29 @@ 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, - [102088] = 3, + 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, + [93479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4368), 23, + ACTIONS(7696), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99471,6 +115201,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, @@ -99478,7 +115209,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, @@ -99486,7 +115216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4370), 25, + ACTIONS(7698), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99497,25 +115227,29 @@ 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, - [102144] = 3, + 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, + [93539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7720), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99524,6 +115258,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, @@ -99531,7 +115266,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, @@ -99539,7 +115273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 25, + ACTIONS(7722), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99550,25 +115284,29 @@ 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, - [102200] = 3, + 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, + [93599] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 23, + ACTIONS(7728), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99577,6 +115315,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, @@ -99584,7 +115323,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, @@ -99592,7 +115330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4398), 25, + ACTIONS(7730), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99603,25 +115341,29 @@ 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, - [102256] = 3, + 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, + [93659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 23, + ACTIONS(7732), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99630,6 +115372,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, @@ -99637,7 +115380,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, @@ -99645,7 +115387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4246), 25, + ACTIONS(7734), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99656,25 +115398,29 @@ 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, - [102312] = 3, + 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, + [93719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99683,6 +115429,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, @@ -99690,7 +115437,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, @@ -99698,7 +115444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4282), 25, + ACTIONS(7738), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99709,25 +115455,29 @@ 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, - [102368] = 3, + 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, + [93779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4320), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -99736,6 +115486,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, @@ -99743,7 +115494,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, @@ -99751,7 +115501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4322), 25, + ACTIONS(7746), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -99762,253 +115512,29 @@ 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, - [102424] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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(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_repeat, 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, - [102526] = 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(4799), 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(4797), 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(1159), 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, - [102628] = 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(4803), 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(4801), 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(1135), 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, - [102730] = 3, + [93839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100017,6 +115543,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, @@ -100024,7 +115551,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, @@ -100032,7 +115558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4326), 25, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100043,25 +115569,29 @@ 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, - [102786] = 3, + 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, + [93899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4336), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100070,6 +115600,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, @@ -100077,7 +115608,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, @@ -100085,7 +115615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4338), 25, + ACTIONS(7746), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100096,177 +115626,29 @@ 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, - [102842] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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(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_repeat, 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, - [102944] = 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(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, + [93959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4340), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100275,6 +115657,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, @@ -100282,7 +115665,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, @@ -100290,7 +115672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4342), 25, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100301,25 +115683,29 @@ 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, - [103102] = 3, + 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, + [94019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100328,6 +115714,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, @@ -100335,7 +115722,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, @@ -100343,7 +115729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4358), 25, + ACTIONS(7754), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100354,25 +115740,29 @@ 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, - [103158] = 3, + 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, + [94079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 23, + ACTIONS(7736), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100381,6 +115771,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, @@ -100388,7 +115779,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, @@ -100396,7 +115786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4366), 25, + ACTIONS(7738), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100407,25 +115797,29 @@ 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, - [103214] = 3, + 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, + [94139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4376), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100434,6 +115828,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, @@ -100441,7 +115836,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, @@ -100449,7 +115843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4378), 25, + ACTIONS(7746), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100460,101 +115854,29 @@ 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, - [103270] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, anon_sym_with, - ACTIONS(4723), 1, anon_sym_do, - ACTIONS(4727), 1, - anon_sym_repeat, - ACTIONS(4731), 1, - anon_sym_else, - ACTIONS(4813), 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(4811), 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(997), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + anon_sym_repeat, 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, - [103372] = 3, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4380), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100563,6 +115885,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, @@ -100570,7 +115893,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, @@ -100578,7 +115900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4382), 25, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100589,177 +115911,29 @@ 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, - [103428] = 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_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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_repeat, 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(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(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(4817), 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(1091), 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, - [103632] = 3, + [94259] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 23, + ACTIONS(7744), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100768,6 +115942,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, @@ -100775,7 +115950,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, @@ -100783,7 +115957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4390), 25, + ACTIONS(7746), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100794,25 +115968,29 @@ 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, - [103688] = 3, + 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, + [94319] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7748), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100821,6 +115999,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, @@ -100828,7 +116007,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, @@ -100836,7 +116014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 25, + ACTIONS(7750), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100847,25 +116025,29 @@ 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, - [103744] = 3, + 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, + [94379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 23, + ACTIONS(7752), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100874,6 +116056,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, @@ -100881,7 +116064,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, @@ -100889,7 +116071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4410), 25, + ACTIONS(7754), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100900,25 +116082,29 @@ 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, - [103800] = 3, + 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, + [94439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 23, + ACTIONS(7770), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100927,6 +116113,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, @@ -100934,7 +116121,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, @@ -100942,7 +116128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4414), 25, + ACTIONS(7772), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -100953,25 +116139,29 @@ 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, - [103856] = 3, + 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, + [94499] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4428), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -100980,6 +116170,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, @@ -100987,7 +116178,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, @@ -100995,7 +116185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4430), 25, + ACTIONS(7776), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101006,101 +116196,29 @@ 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, - [103912] = 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(4711), 1, - anon_sym_RPAREN, - ACTIONS(4713), 1, - anon_sym_cl, - ACTIONS(4715), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, anon_sym_and, - ACTIONS(4721), 1, + anon_sym_as, 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_repeat, 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, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101109,6 +116227,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, @@ -101116,7 +116235,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, @@ -101124,7 +116242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4442), 25, + ACTIONS(7776), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101135,25 +116253,29 @@ 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, - [104070] = 3, + 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, + [94619] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 23, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101162,6 +116284,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, @@ -101169,7 +116292,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, @@ -101177,7 +116299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4146), 25, + ACTIONS(7668), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101188,36 +116310,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, - [104126] = 5, + 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, + [94679] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4819), 1, - anon_sym_COLON, - ACTIONS(4821), 1, - anon_sym_COLON_COLON, - ACTIONS(4464), 22, + ACTIONS(7778), 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, @@ -101225,7 +116349,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, @@ -101233,35 +116356,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 24, + ACTIONS(7780), 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, 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, - [104186] = 3, + 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, + [94739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 23, + ACTIONS(7786), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101270,6 +116398,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, @@ -101277,7 +116406,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, @@ -101285,7 +116413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4474), 25, + ACTIONS(7788), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101296,25 +116424,29 @@ 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, - [104242] = 3, + 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, + [94799] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4464), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101323,6 +116455,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, @@ -101330,7 +116463,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, @@ -101338,7 +116470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4466), 25, + ACTIONS(7776), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101349,25 +116481,29 @@ 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, - [104298] = 3, + 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, + [94859] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 23, + ACTIONS(7774), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101376,6 +116512,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, @@ -101383,7 +116520,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, @@ -101391,7 +116527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4482), 25, + ACTIONS(7776), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101402,25 +116538,29 @@ 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, - [104354] = 3, + 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, + [94919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 23, + ACTIONS(7778), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101429,6 +116569,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, @@ -101436,7 +116577,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, @@ -101444,7 +116584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4490), 25, + ACTIONS(7780), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101455,25 +116595,29 @@ 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, - [104410] = 3, + 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, + [94979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 23, + ACTIONS(7786), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -101482,6 +116626,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, @@ -101489,7 +116634,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, @@ -101497,7 +116641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4494), 25, + ACTIONS(7788), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -101508,36 +116652,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, - [104466] = 5, + 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, + [95039] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4819), 1, - anon_sym_COLON, - ACTIONS(4821), 1, - anon_sym_COLON_COLON, - ACTIONS(4496), 22, + ACTIONS(7794), 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, @@ -101545,7 +116691,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, @@ -101553,46 +116698,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4498), 24, + ACTIONS(7796), 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, 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, - [104526] = 5, + 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, + [95099] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4819), 1, - anon_sym_COLON, - ACTIONS(4821), 1, - anon_sym_COLON_COLON, - ACTIONS(4500), 22, + ACTIONS(7794), 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, @@ -101600,7 +116748,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, @@ -101608,1694 +116755,1890 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4502), 24, + ACTIONS(7796), 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, anon_sym_COMMA, sym_fancy_literal, 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, + [95159] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7880), 1, + anon_sym_POUND_, + ACTIONS(7883), 1, + anon_sym_COLON, + ACTIONS(7888), 1, + anon_sym_cl, + ACTIONS(7891), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7877), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, 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(4512), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7886), 22, 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(4514), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95238] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7896), 1, + anon_sym_POUND_, + ACTIONS(7899), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7904), 1, anon_sym_cl, + ACTIONS(7907), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7893), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104642] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4404), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7902), 22, 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(4406), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95317] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7912), 1, + anon_sym_POUND_, + ACTIONS(7915), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7920), 1, anon_sym_cl, + ACTIONS(7923), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7909), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104698] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4140), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7918), 22, 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(4142), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95396] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7928), 1, + anon_sym_POUND_, + ACTIONS(7931), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7936), 1, anon_sym_cl, + ACTIONS(7939), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7925), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104754] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4416), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7934), 22, 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(4418), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95475] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7944), 1, + anon_sym_POUND_, + ACTIONS(7947), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7952), 1, anon_sym_cl, + ACTIONS(7955), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7941), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, 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(4420), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7950), 22, 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(4422), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95554] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7896), 1, + anon_sym_POUND_, + ACTIONS(7899), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7904), 1, anon_sym_cl, + ACTIONS(7907), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7893), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104866] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4432), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7902), 22, 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_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, + [95633] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7960), 1, + anon_sym_POUND_, + ACTIONS(7963), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7968), 1, anon_sym_cl, + ACTIONS(7971), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7957), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104922] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4432), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7966), 22, 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_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, + [95712] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7912), 1, + anon_sym_POUND_, + ACTIONS(7915), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7920), 1, anon_sym_cl, + ACTIONS(7923), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7909), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [104978] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4416), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7918), 22, 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(4418), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95791] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7928), 1, + anon_sym_POUND_, + ACTIONS(7931), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7936), 1, anon_sym_cl, + ACTIONS(7939), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7925), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105034] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4420), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7934), 22, 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(4422), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [95870] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7880), 1, + anon_sym_POUND_, + ACTIONS(7883), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7888), 1, anon_sym_cl, + ACTIONS(7891), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7877), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, 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, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7886), 22, 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_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, + [95949] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7880), 1, + anon_sym_POUND_, + ACTIONS(7883), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7888), 1, anon_sym_cl, + ACTIONS(7891), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7877), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, 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(4432), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7886), 22, 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_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, + [96028] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7976), 1, + anon_sym_POUND_, + ACTIONS(7979), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7984), 1, anon_sym_cl, + ACTIONS(7987), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7973), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105202] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4444), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7982), 22, 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(4446), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96107] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7928), 1, + anon_sym_POUND_, + ACTIONS(7931), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7936), 1, anon_sym_cl, + ACTIONS(7939), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7925), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105258] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4448), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7934), 22, 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(4450), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96186] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7992), 1, + anon_sym_POUND_, + ACTIONS(7995), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8000), 1, anon_sym_cl, + ACTIONS(8003), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7989), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105314] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4452), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7998), 22, 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(4454), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96265] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7960), 1, + anon_sym_POUND_, + ACTIONS(7963), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7968), 1, anon_sym_cl, + ACTIONS(7971), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7957), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105370] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, - anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(7966), 22, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, - anon_sym_cl, - ACTIONS(4715), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + anon_sym_for, 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_with, 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_repeat, 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_, - 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, + [96344] = 13, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(7944), 1, anon_sym_POUND_, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(7947), 1, + anon_sym_COLON, + ACTIONS(7952), 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, + ACTIONS(7955), 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, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(7941), 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, + STATE(2746), 3, 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(4456), 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(4458), 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, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, anon_sym_across, - anon_sym_being, 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105732] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4460), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7950), 22, 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(4462), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96423] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7896), 1, + anon_sym_POUND_, + ACTIONS(7899), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7904), 1, anon_sym_cl, + ACTIONS(7907), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7893), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105788] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4476), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7902), 22, 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(4478), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96502] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7992), 1, + anon_sym_POUND_, + ACTIONS(7995), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8000), 1, anon_sym_cl, + ACTIONS(8003), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7989), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105844] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4460), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7998), 22, 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(4462), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96581] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8008), 1, + anon_sym_POUND_, + ACTIONS(8011), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8016), 1, anon_sym_cl, + ACTIONS(8019), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8005), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105900] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4476), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8014), 22, 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(4478), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96660] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8024), 1, + anon_sym_POUND_, + ACTIONS(8027), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8032), 1, anon_sym_cl, + ACTIONS(8035), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8021), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [105956] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4484), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8030), 22, 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(4486), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96739] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7912), 1, + anon_sym_POUND_, + ACTIONS(7915), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7920), 1, anon_sym_cl, + ACTIONS(7923), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7909), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106012] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4456), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7918), 22, 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(4458), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96818] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7944), 1, + anon_sym_POUND_, + ACTIONS(7947), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(7952), 1, anon_sym_cl, + ACTIONS(7955), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(7941), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106068] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4460), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(7950), 22, 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(4462), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96897] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8040), 1, + anon_sym_POUND_, + ACTIONS(8043), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8048), 1, anon_sym_cl, + ACTIONS(8051), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8037), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106124] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4476), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8046), 22, 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(4478), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [96976] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8056), 1, + anon_sym_POUND_, + ACTIONS(8059), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8064), 1, anon_sym_cl, + ACTIONS(8067), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8053), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106180] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4460), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8062), 22, 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(4462), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [97055] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8024), 1, + anon_sym_POUND_, + ACTIONS(8027), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8032), 1, anon_sym_cl, + ACTIONS(8035), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8021), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106236] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4476), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8030), 22, 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(4478), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [97134] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8072), 1, + anon_sym_POUND_, + ACTIONS(8075), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8080), 1, anon_sym_cl, + ACTIONS(8089), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(8069), 2, + sym__ws, + sym_comment, + ACTIONS(8083), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8086), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106292] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4484), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8078), 22, 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(4486), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [97213] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8056), 1, + anon_sym_POUND_, + ACTIONS(8059), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8064), 1, anon_sym_cl, + ACTIONS(8067), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8053), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106348] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4504), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8062), 22, 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(4506), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + 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, + [97292] = 13, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8024), 1, + anon_sym_POUND_, + ACTIONS(8027), 1, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(8032), 1, anon_sym_cl, + ACTIONS(8035), 1, + anon_sym_do, + STATE(405), 1, + sym_for_clause_word, + STATE(1280), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(1654), 2, anon_sym_in, - anon_sym_across, anon_sym_being, + ACTIONS(8021), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 15, + 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_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106404] = 3, + ACTIONS(8030), 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, + [97371] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(8091), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103319,7 +118662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 25, + ACTIONS(7445), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103339,16 +118682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106460] = 3, + [97431] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 23, + ACTIONS(7557), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103372,7 +118716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(4510), 25, + ACTIONS(7559), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103392,79 +118736,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [106516] = 26, + [97488] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8103), 1, + anon_sym_RPAREN, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4827), 1, - anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4829), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1109), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103474,73 +118821,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [106618] = 26, + [97593] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4831), 1, + ACTIONS(8127), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103550,497 +118899,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [106720] = 3, + [97698] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 23, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 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(4426), 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, - [106776] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4400), 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(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, - 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, - [106832] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4508), 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(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, - [106888] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4508), 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(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(4424), 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(4426), 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, - [107000] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4400), 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(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, - 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, - [107056] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4292), 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(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, - 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, - [107112] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4292), 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(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, - 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, - [107168] = 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, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4833), 1, + ACTIONS(8131), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8129), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1286), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104050,126 +118977,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107270] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4352), 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(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, - 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, - [107326] = 26, + [97803] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4837), 1, + ACTIONS(8131), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4835), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1118), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104179,73 +119055,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107428] = 26, + [97908] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4837), 1, + ACTIONS(8133), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104255,73 +119133,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107530] = 26, + [98013] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4841), 1, + ACTIONS(8133), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4839), 2, + ACTIONS(8135), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1132), 4, + STATE(1288), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104331,73 +119211,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107632] = 26, + [98118] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4843), 1, + ACTIONS(8139), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8137), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1289), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104407,73 +119289,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107734] = 26, + [98223] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4843), 1, + ACTIONS(8139), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4845), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1121), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104483,73 +119367,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107836] = 26, + [98328] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4849), 1, + ACTIONS(8143), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4847), 2, + ACTIONS(8141), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1123), 4, + STATE(1318), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104559,73 +119445,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [107938] = 26, + [98433] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4849), 1, + ACTIONS(8147), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8145), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1292), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104635,73 +119523,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108040] = 26, + [98538] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4853), 1, + ACTIONS(8149), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4851), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1126), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104711,73 +119601,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108142] = 26, + [98643] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4743), 1, + ACTIONS(8153), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4855), 2, + ACTIONS(8151), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(976), 4, + STATE(1295), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104787,73 +119679,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108244] = 26, + [98748] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4859), 1, + ACTIONS(8153), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4857), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1162), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104863,73 +119757,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108346] = 26, + [98853] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4864), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4867), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4870), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4873), 1, - anon_sym_LPAREN, - ACTIONS(4876), 1, - anon_sym_RPAREN, - ACTIONS(4878), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4881), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4887), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4890), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4893), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4899), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4905), 1, + ACTIONS(8123), 1, anon_sym_else, - STATE(247), 1, + ACTIONS(8155), 1, + anon_sym_RPAREN, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4861), 2, + ACTIONS(8093), 2, sym__ws, sym_comment, - ACTIONS(4884), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4896), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4908), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4902), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -104939,73 +119835,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108448] = 26, + [98958] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4911), 1, + ACTIONS(8155), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8157), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1297), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105015,73 +119913,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108550] = 26, + [99063] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4859), 1, + ACTIONS(8161), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8159), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1298), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105091,73 +119991,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108652] = 26, + [99168] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4913), 1, + ACTIONS(8161), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105167,126 +120069,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108754] = 3, + [99273] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4811), 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(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, - [108810] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4915), 1, + ACTIONS(8165), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8163), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1301), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105296,73 +120147,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [108912] = 26, + [99378] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4915), 1, + ACTIONS(8167), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4917), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1140), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105372,73 +120225,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109014] = 26, + [99483] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4795), 1, + ACTIONS(8171), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4919), 2, + ACTIONS(8169), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1133), 4, + STATE(1303), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105448,73 +120303,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109116] = 26, + [99588] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4923), 1, + ACTIONS(8171), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4921), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1131), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105524,73 +120381,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109218] = 26, + [99693] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4927), 1, + ACTIONS(8173), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4925), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1141), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105600,73 +120459,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109320] = 26, + [99798] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4927), 1, + ACTIONS(8173), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8175), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1305), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105676,73 +120537,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109422] = 26, + [99903] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4929), 1, + ACTIONS(8179), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8177), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1306), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105752,73 +120615,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109524] = 26, + [100008] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4929), 1, + ACTIONS(8179), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4931), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1143), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105828,73 +120693,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109626] = 26, + [100113] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4933), 1, + ACTIONS(8183), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8181), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1309), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -105904,202 +120771,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109728] = 3, + [100218] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4811), 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(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, - [109784] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4937), 1, + ACTIONS(8185), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 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, + ACTIONS(8093), 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(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, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106109,73 +120849,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [109988] = 26, + [100323] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4939), 1, + ACTIONS(8189), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4941), 2, + ACTIONS(8187), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1045), 4, + STATE(1311), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106185,179 +120927,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110090] = 3, + [100428] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(4811), 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(4394), 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, - [110146] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4372), 23, - sym__ws, - sym_comment, + ACTIONS(8095), 1, 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(4374), 25, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8097), 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, - 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, - [110202] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4705), 1, - anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4943), 1, + ACTIONS(8189), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106367,73 +121005,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110304] = 26, + [100533] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8103), 1, + anon_sym_RPAREN, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4943), 1, - anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4945), 2, + ACTIONS(8191), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1160), 4, + STATE(1313), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106443,73 +121083,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110406] = 26, + [100638] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4923), 1, + ACTIONS(8195), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8193), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1285), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106519,73 +121161,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110508] = 26, + [100743] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4949), 1, + ACTIONS(8195), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4947), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1146), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106595,73 +121239,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110610] = 26, + [100848] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4949), 1, + ACTIONS(8199), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8197), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1316), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106671,73 +121317,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110712] = 26, + [100953] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4951), 1, + ACTIONS(8201), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106747,73 +121395,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110814] = 26, + [101058] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4951), 1, + ACTIONS(8203), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4953), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1152), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106823,73 +121473,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [110916] = 26, + [101163] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4957), 1, + ACTIONS(8201), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4955), 2, + ACTIONS(8205), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1161), 4, + STATE(1349), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106899,73 +121551,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111018] = 26, + [101268] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4805), 1, + ACTIONS(8209), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4959), 2, + ACTIONS(8207), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1155), 4, + STATE(1319), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -106975,73 +121629,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111120] = 26, + [101373] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4841), 1, + ACTIONS(8209), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107051,73 +121707,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111222] = 26, + [101478] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4957), 1, + ACTIONS(8211), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107127,73 +121785,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111324] = 26, + [101583] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4961), 1, + ACTIONS(8211), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8213), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1322), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107203,73 +121863,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111426] = 26, + [101688] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4809), 1, + ACTIONS(8217), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8215), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1323), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107279,73 +121941,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111528] = 26, + [101793] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4961), 1, + ACTIONS(8217), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4963), 2, - sym__ws, - sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1164), 4, + STATE(1345), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107355,73 +122019,75 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111630] = 26, + [101898] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4705), 1, + ACTIONS(8095), 1, anon_sym_POUND_, - ACTIONS(4707), 1, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(4713), 1, + ACTIONS(8105), 1, anon_sym_cl, - ACTIONS(4715), 1, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4719), 1, + ACTIONS(8111), 1, anon_sym_and, - ACTIONS(4721), 1, + ACTIONS(8113), 1, anon_sym_with, - ACTIONS(4723), 1, + ACTIONS(8115), 1, anon_sym_do, - ACTIONS(4727), 1, + ACTIONS(8119), 1, anon_sym_repeat, - ACTIONS(4731), 1, + ACTIONS(8123), 1, anon_sym_else, - ACTIONS(4965), 1, + ACTIONS(8221), 1, anon_sym_RPAREN, - STATE(247), 1, + STATE(909), 1, sym_accumulation_verb, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(4717), 2, + ACTIONS(8109), 2, anon_sym_for, anon_sym_as, - ACTIONS(4725), 2, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - ACTIONS(4735), 2, + ACTIONS(8219), 2, sym__ws, sym_comment, - ACTIONS(4733), 3, + ACTIONS(8125), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1924), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1130), 4, + STATE(1326), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(4729), 6, + ACTIONS(8121), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(2081), 9, + STATE(2681), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -107431,6099 +122097,7672 @@ static const uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [111732] = 3, + [102003] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 4, - anon_sym_COLON, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4512), 41, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, - anon_sym_while, - anon_sym_until, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, anon_sym_repeat, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, + ACTIONS(8123), 1, anon_sym_else, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [111785] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4967), 1, - anon_sym_COLON, - ACTIONS(4969), 1, - anon_sym_COLON_COLON, - ACTIONS(4466), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4464), 40, + ACTIONS(8223), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, 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, + ACTIONS(8109), 2, anon_sym_for, - anon_sym_and, anon_sym_as, - anon_sym_with, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [111842] = 5, + STATE(2681), 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, + [102108] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4967), 1, - anon_sym_COLON, - ACTIONS(4969), 1, - anon_sym_COLON_COLON, - ACTIONS(4498), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4496), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8227), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8225), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1328), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [111899] = 5, + STATE(2681), 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, + [102213] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4967), 1, - anon_sym_COLON, - ACTIONS(4969), 1, - anon_sym_COLON_COLON, - ACTIONS(4502), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4500), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8227), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [111956] = 4, + STATE(2681), 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, + [102318] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4971), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4134), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112010] = 3, + STATE(2681), 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, + [102423] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4460), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8229), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8231), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1330), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112061] = 3, + STATE(2681), 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, + [102528] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4328), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8235), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8233), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1331), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112112] = 3, + STATE(2681), 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, + [102633] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4975), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4973), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8235), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112163] = 3, + STATE(2681), 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, + [102738] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4160), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8239), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8237), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1334), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112214] = 3, + STATE(2681), 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, + [102843] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4492), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8241), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112265] = 3, + STATE(2681), 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, + [102948] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4488), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8245), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8243), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1336), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112316] = 3, + STATE(2681), 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, + [103053] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4977), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8245), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112367] = 3, + STATE(2681), 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, + [103158] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4464), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8247), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112418] = 3, + STATE(2681), 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, + [103263] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4472), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8247), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8249), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1338), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112469] = 3, + STATE(2681), 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, + [103368] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4144), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8253), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8251), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1363), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112520] = 3, + STATE(2681), 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, + [103473] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4176), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8257), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8255), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1339), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112571] = 3, + STATE(2681), 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, + [103578] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4172), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8257), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112622] = 3, + STATE(2681), 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, + [103683] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4158), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4156), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8261), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8259), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1343), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112673] = 3, + STATE(2681), 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, + [103788] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4148), 40, - sym__ws, - sym_comment, + ACTIONS(8266), 1, anon_sym_POUND_, + ACTIONS(8269), 1, + anon_sym_COLON, + ACTIONS(8272), 1, anon_sym_CARET, + ACTIONS(8275), 1, anon_sym_POUND_CARET, + ACTIONS(8278), 1, anon_sym_LPAREN, + ACTIONS(8281), 1, anon_sym_RPAREN, + ACTIONS(8283), 1, 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, + ACTIONS(8286), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8292), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8295), 1, anon_sym_with, + ACTIONS(8298), 1, + anon_sym_do, + ACTIONS(8304), 1, + anon_sym_repeat, + ACTIONS(8310), 1, + anon_sym_else, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8263), 2, + sym__ws, + sym_comment, + ACTIONS(8289), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8301), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8313), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8307), 6, 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, - [112724] = 3, + STATE(2681), 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, + [103893] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4518), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4516), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8316), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112775] = 3, + STATE(2681), 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, + [103998] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4200), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8320), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8318), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1346), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112826] = 3, + STATE(2681), 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, + [104103] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4196), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8320), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112877] = 3, + STATE(2681), 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, + [104208] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4180), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8253), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112928] = 3, + STATE(2681), 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, + [104313] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4164), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8322), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [112979] = 3, + STATE(2681), 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, + [104418] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4981), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8322), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8324), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1348), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113030] = 3, + STATE(2681), 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, + [104523] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4440), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8328), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8326), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1350), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113081] = 3, + STATE(2681), 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, + [104628] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4204), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8328), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113132] = 3, + STATE(2681), 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, + [104733] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4240), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8332), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8330), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1353), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113183] = 3, + STATE(2681), 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, + [104838] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4228), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8334), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113234] = 3, + STATE(2681), 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, + [104943] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4977), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8338), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8336), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1355), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113285] = 3, + STATE(2681), 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, + [105048] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4408), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8338), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113336] = 3, + STATE(2681), 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, + [105153] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4228), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8340), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113387] = 3, + STATE(2681), 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, + [105258] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4212), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8340), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8342), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1357), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113438] = 3, + STATE(2681), 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, + [105363] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4192), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8346), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8344), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1358), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113489] = 3, + STATE(2681), 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, + [105468] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4144), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8346), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113540] = 3, + STATE(2681), 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, + [105573] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4184), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8350), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8348), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1361), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113591] = 3, + STATE(2681), 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, + [105678] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4168), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8352), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113642] = 3, + STATE(2681), 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, + [105783] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4380), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8352), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8354), 2, + sym__ws, + sym_comment, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1365), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113693] = 3, + STATE(2681), 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, + [105888] = 27, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4376), 40, - sym__ws, - sym_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8095), 1, anon_sym_POUND_, + ACTIONS(8097), 1, + anon_sym_COLON, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(8105), 1, 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, + ACTIONS(8107), 1, aux_sym_accumulation_verb_token1, - anon_sym_for, + ACTIONS(8111), 1, anon_sym_and, - anon_sym_as, + ACTIONS(8113), 1, anon_sym_with, + ACTIONS(8115), 1, + anon_sym_do, + ACTIONS(8119), 1, + anon_sym_repeat, + ACTIONS(8123), 1, + anon_sym_else, + ACTIONS(8356), 1, + anon_sym_RPAREN, + STATE(909), 1, + sym_accumulation_verb, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + ACTIONS(8093), 2, + sym__ws, + sym_comment, + ACTIONS(8109), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(8117), 2, anon_sym_while, anon_sym_until, - anon_sym_repeat, + ACTIONS(8125), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1345), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(8121), 6, 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, - [113744] = 3, + STATE(2681), 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, + [105993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4276), 40, + ACTIONS(7794), 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, + 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(7796), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [113795] = 3, + [106050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4364), 40, + ACTIONS(7794), 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, + 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(7796), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [113846] = 3, + [106107] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4296), 40, + ACTIONS(7786), 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, + 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(7788), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [113897] = 3, + [106164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4300), 40, + ACTIONS(7778), 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, + 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(7780), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [113948] = 3, + [106221] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4300), 40, + ACTIONS(7774), 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, + 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(7776), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [113999] = 3, + [106278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4304), 40, + ACTIONS(7774), 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, + 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(7776), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114050] = 3, + [106335] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4356), 40, + ACTIONS(7786), 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, + 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(7788), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114101] = 3, + [106392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4340), 40, + ACTIONS(7778), 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, + 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(7780), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114152] = 3, + [106449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4308), 40, + ACTIONS(7774), 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, + 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(7776), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114203] = 3, + [106506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4312), 40, + ACTIONS(7774), 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, + 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(7776), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114254] = 3, + [106563] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4316), 40, + ACTIONS(7770), 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, + 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(7772), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114305] = 3, + [106620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4220), 40, + ACTIONS(7752), 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, + 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(7754), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114356] = 3, + [106677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4336), 40, + ACTIONS(7748), 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, + 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(7750), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114407] = 3, + [106734] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4324), 40, + ACTIONS(7744), 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, + 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(7746), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114458] = 3, + [106791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4320), 40, + ACTIONS(7748), 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, + 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(7750), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114509] = 3, + [106848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4280), 40, + ACTIONS(7744), 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, + 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(7746), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114560] = 3, + [106905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4144), 40, + ACTIONS(7736), 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, + 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(7738), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114611] = 3, + [106962] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4368), 40, + ACTIONS(7752), 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, + 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(7754), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114662] = 3, + [107019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4288), 40, + ACTIONS(7748), 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, + 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(7750), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114713] = 3, + [107076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4312), 40, + ACTIONS(7744), 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, + 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(7746), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114764] = 3, + [107133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4284), 40, + ACTIONS(7748), 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, + 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(7750), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114815] = 3, + [107190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4256), 40, + ACTIONS(7744), 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, + 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(7746), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114866] = 3, + [107247] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4272), 40, + ACTIONS(7736), 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, + 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(7738), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114917] = 3, + [107304] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4316), 40, + ACTIONS(7732), 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, + 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(7734), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [114968] = 3, + [107361] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4208), 40, + ACTIONS(7728), 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, + 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(7730), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115019] = 3, + [107418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4224), 40, + ACTIONS(7720), 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, + 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(7722), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115070] = 3, + [107475] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4216), 40, + ACTIONS(7696), 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, + 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(7698), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115121] = 3, + [107532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4268), 40, + ACTIONS(7696), 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, + 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(7698), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115172] = 3, + [107589] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4264), 40, + ACTIONS(7692), 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, + 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(7694), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115223] = 3, + [107646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(7680), 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, + 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(7682), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115274] = 3, + [107703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(7696), 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, + 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(7698), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115325] = 3, + [107760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4260), 40, + ACTIONS(7696), 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_cl, - anon_sym_across, - anon_sym_using, + 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(7698), 26, + 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_upfrom, 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, - [115376] = 3, + [107817] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4188), 40, + ACTIONS(7692), 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, + 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(7694), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115427] = 3, + [107874] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4388), 40, + ACTIONS(7680), 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, + 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(7682), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115478] = 3, + [107931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4484), 40, + ACTIONS(7670), 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, + 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(7672), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115529] = 3, + [107988] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4332), 40, + ACTIONS(7638), 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, + 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(7640), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115580] = 3, + [108045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4412), 40, + ACTIONS(7626), 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, + 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(7628), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115631] = 3, + [108102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4344), 40, + ACTIONS(7609), 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, + 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(7611), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115682] = 3, + [108159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4348), 40, + ACTIONS(7605), 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, + 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(7607), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115733] = 3, + [108216] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4352), 40, + ACTIONS(7597), 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, + 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(7599), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115784] = 3, + [108273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4360), 40, + ACTIONS(7597), 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, + 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(7599), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115835] = 3, + [108330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4360), 40, + ACTIONS(7589), 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, + 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(7591), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115886] = 3, + [108387] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4372), 40, + ACTIONS(7589), 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, + 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(7591), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115937] = 3, + [108444] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4372), 40, + ACTIONS(7585), 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, + 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(7587), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [115988] = 3, + [108501] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4252), 40, + ACTIONS(7577), 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, + 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(7579), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116039] = 3, + [108558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4428), 40, + ACTIONS(7573), 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, + 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(7575), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116090] = 3, + [108615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4436), 40, + ACTIONS(7569), 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, + 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(7571), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116141] = 3, + [108672] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4384), 40, + ACTIONS(7561), 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, + 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(7563), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116192] = 3, + [108729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4392), 40, + ACTIONS(7553), 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, + 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(7555), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116243] = 3, + [108786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4248), 40, + ACTIONS(7557), 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, + 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(7559), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116294] = 3, + [108843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4292), 40, + ACTIONS(7553), 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, + 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(7555), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116345] = 3, + [108900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4396), 40, + ACTIONS(7549), 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_cl, - anon_sym_across, - anon_sym_using, + 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(7551), 26, + 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_upfrom, 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, - [116396] = 3, + [108957] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4985), 40, + ACTIONS(7537), 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, + 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(7539), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116447] = 3, + [109014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4292), 40, + ACTIONS(7529), 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, + 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(7531), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116498] = 3, + [109071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4400), 40, + ACTIONS(7529), 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, + 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(7531), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116549] = 3, + [109128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4404), 40, + ACTIONS(7517), 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, + 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(7519), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116600] = 3, + [109185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4140), 40, + ACTIONS(7493), 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, + 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(7495), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116651] = 3, + [109242] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4416), 40, + ACTIONS(7489), 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, + 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(7491), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116702] = 3, + [109299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4420), 40, + ACTIONS(7489), 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, + 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(7491), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116753] = 3, + [109356] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4432), 40, + ACTIONS(7676), 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, + 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(7678), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116804] = 3, + [109413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4432), 40, + ACTIONS(7766), 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, + 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(7768), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116855] = 3, + [109470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4236), 40, + ACTIONS(7790), 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, + 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(7792), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116906] = 3, + [109527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4416), 40, + ACTIONS(7813), 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, + 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(7815), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [116957] = 3, + [109584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4232), 40, + ACTIONS(7817), 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, + 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(7819), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117008] = 3, + [109641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4420), 40, + ACTIONS(7824), 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, + 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(7826), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117059] = 3, + [109698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4432), 40, + ACTIONS(7831), 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, + 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(7833), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117110] = 3, + [109755] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4432), 40, + ACTIONS(7835), 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, + 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(7837), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117161] = 3, + [109812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4444), 40, + ACTIONS(7839), 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, + 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(7841), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117212] = 3, + [109869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4448), 40, + ACTIONS(7850), 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, + 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(7852), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117263] = 3, + [109926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4452), 40, + ACTIONS(7860), 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, + 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(7862), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117314] = 3, + [109983] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4456), 40, + ACTIONS(7650), 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, + 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(7652), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117365] = 3, + [110040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(7846), 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_cl, + 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(7848), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117416] = 3, + [110097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(7801), 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, + 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(7803), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117467] = 3, + [110154] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(7782), 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, + 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(7784), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117518] = 3, + [110211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(7759), 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, + 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(7761), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117569] = 3, + [110268] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4484), 40, + ACTIONS(7724), 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, + 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(7726), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117620] = 3, + [110325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4424), 40, + ACTIONS(7712), 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, + 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(7714), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117671] = 3, + [110382] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(7654), 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, + 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(7656), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117722] = 3, + [110439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4154), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4152), 40, + ACTIONS(7688), 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, + 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(7690), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117773] = 3, + [110496] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4456), 40, + ACTIONS(7457), 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, + 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(7459), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117824] = 3, + [110553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4504), 40, + ACTIONS(7461), 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, + 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(7463), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117875] = 3, + [110610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4460), 40, + ACTIONS(7465), 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, + 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(7467), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117926] = 3, + [110667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(7469), 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, + 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(7471), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [117977] = 3, + [110724] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4508), 40, + ACTIONS(7473), 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, + 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(7475), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [118028] = 3, + [110781] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4476), 40, + ACTIONS(7477), 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, + 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(7479), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [118079] = 3, + [110838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4400), 40, + ACTIONS(7481), 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, + 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(7483), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, + [110895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(4424), 40, + ACTIONS(7485), 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, + 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(7487), 26, + 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, - aux_sym_for_clause_word_token1, anon_sym_below, anon_sym_above, anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, 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, - [118181] = 9, + [110952] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(4993), 1, - anon_sym_cl, - ACTIONS(4995), 1, - anon_sym_loop, - STATE(152), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 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, - ACTIONS(4989), 23, + ACTIONS(7497), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113532,7 +129771,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, @@ -113540,6 +129778,7 @@ 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, @@ -113547,25 +129786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118242] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(4997), 1, - anon_sym_cl, - ACTIONS(4999), 1, - anon_sym_loop, - STATE(46), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7499), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113575,7 +129796,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111009] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7501), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113584,7 +129825,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, @@ -113592,6 +129832,7 @@ 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, @@ -113599,25 +129840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118303] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5001), 1, - anon_sym_cl, - ACTIONS(5003), 1, - anon_sym_loop, - STATE(129), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7503), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113627,7 +129850,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111066] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7505), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113636,7 +129879,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, @@ -113644,6 +129886,7 @@ 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, @@ -113651,25 +129894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118364] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5005), 1, - anon_sym_cl, - ACTIONS(5007), 1, - anon_sym_loop, - STATE(131), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7507), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113679,7 +129904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111123] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7509), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113688,7 +129933,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, @@ -113696,6 +129940,7 @@ 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, @@ -113703,25 +129948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118425] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5009), 1, - anon_sym_cl, - ACTIONS(5011), 1, - anon_sym_loop, - STATE(58), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7511), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113731,7 +129958,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111180] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7513), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113740,7 +129987,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, @@ -113748,6 +129994,7 @@ 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, @@ -113755,25 +130002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118486] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5013), 1, - anon_sym_cl, - ACTIONS(5015), 1, - anon_sym_loop, - STATE(72), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7515), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113783,7 +130012,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111237] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7521), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113792,7 +130041,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, @@ -113800,6 +130048,7 @@ 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, @@ -113807,25 +130056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118547] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5017), 1, - anon_sym_cl, - ACTIONS(5019), 1, - anon_sym_loop, - STATE(89), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7523), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113835,7 +130066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111294] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113844,7 +130095,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, @@ -113852,6 +130102,7 @@ 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, @@ -113859,25 +130110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118608] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5021), 1, - anon_sym_cl, - ACTIONS(5023), 1, - anon_sym_loop, - STATE(110), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7527), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113887,7 +130120,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111351] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7533), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113896,7 +130149,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, @@ -113904,6 +130156,7 @@ 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, @@ -113911,25 +130164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118669] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5025), 1, - anon_sym_cl, - ACTIONS(5027), 1, - anon_sym_loop, - STATE(138), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7535), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113939,7 +130174,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111408] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7541), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -113948,7 +130203,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, @@ -113956,6 +130210,7 @@ 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, @@ -113963,25 +130218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118730] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(390), 1, - anon_sym_lambda, - ACTIONS(5029), 1, - anon_sym_cl, - ACTIONS(5031), 1, - anon_sym_loop, - STATE(162), 1, - sym_defun_header, - STATE(568), 1, - sym_defun_keyword, - ACTIONS(388), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(4991), 9, + ACTIONS(7543), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -113991,7 +130228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(4989), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111465] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7545), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114000,7 +130257,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, @@ -114008,6 +130264,7 @@ 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, @@ -114015,12 +130272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118791] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5033), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 16, + ACTIONS(7547), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114031,13 +130283,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4134), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111522] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7565), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114046,7 +130311,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, @@ -114054,6 +130318,7 @@ 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, @@ -114061,10 +130326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118841] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4218), 16, + ACTIONS(7567), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114075,13 +130337,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4216), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111579] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7581), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114090,7 +130365,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, @@ -114098,6 +130372,7 @@ 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, @@ -114105,10 +130380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118888] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4390), 16, + ACTIONS(7583), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114119,13 +130391,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4388), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111636] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7593), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114134,7 +130419,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, @@ -114142,6 +130426,7 @@ 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, @@ -114149,10 +130434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118935] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4206), 16, + ACTIONS(7595), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114163,13 +130445,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4204), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111693] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7601), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114178,7 +130473,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, @@ -114186,6 +130480,7 @@ 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, @@ -114193,10 +130488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [118982] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4166), 16, + ACTIONS(7603), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114207,13 +130499,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4164), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111750] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7613), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114222,7 +130527,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, @@ -114230,6 +130534,7 @@ 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, @@ -114237,10 +130542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119029] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4182), 16, + ACTIONS(7615), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114251,13 +130553,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4180), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111807] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7630), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114266,7 +130581,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, @@ -114274,6 +130588,7 @@ 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, @@ -114281,10 +130596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119076] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4510), 16, + ACTIONS(7632), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114295,13 +130607,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4508), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111864] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7634), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114310,7 +130635,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, @@ -114318,6 +130642,7 @@ 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, @@ -114325,10 +130650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119123] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4198), 16, + ACTIONS(7636), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114339,13 +130661,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4196), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111921] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7642), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114354,7 +130689,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, @@ -114362,6 +130696,7 @@ 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, @@ -114369,10 +130704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119170] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4202), 16, + ACTIONS(7644), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114383,13 +130715,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4200), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [111978] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114398,7 +130743,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, @@ -114406,6 +130750,7 @@ 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, @@ -114413,10 +130758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119217] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4518), 16, + ACTIONS(7527), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114427,13 +130769,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4516), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112035] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7646), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114442,7 +130797,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, @@ -114450,6 +130804,7 @@ 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, @@ -114457,10 +130812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119264] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4150), 16, + ACTIONS(7648), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114471,13 +130823,26 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112092] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7449), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114486,7 +130851,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, @@ -114494,6 +130858,7 @@ 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, @@ -114501,10 +130866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119311] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4158), 16, + ACTIONS(7451), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114515,13 +130877,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4156), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112149] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7658), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114530,7 +130905,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, @@ -114538,6 +130912,7 @@ 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, @@ -114545,10 +130920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119358] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4162), 16, + ACTIONS(7660), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114559,13 +130931,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4160), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112206] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7662), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114574,7 +130959,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, @@ -114582,6 +130966,7 @@ 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, @@ -114589,10 +130974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119405] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4174), 16, + ACTIONS(7664), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114603,13 +130985,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4172), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112263] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7666), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114618,7 +131013,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, @@ -114626,6 +131020,7 @@ 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, @@ -114633,10 +131028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119452] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4178), 16, + ACTIONS(7668), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114647,13 +131039,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4176), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112320] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7525), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114662,7 +131067,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, @@ -114670,6 +131074,7 @@ 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, @@ -114677,10 +131082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119499] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4154), 16, + ACTIONS(7527), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114691,22 +131093,37 @@ static const uint16_t ts_small_parse_table[] = { 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(4152), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112377] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8358), 1, + anon_sym_COLON, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 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, @@ -114714,6 +131131,7 @@ 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, @@ -114721,27 +131139,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119546] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4230), 16, + ACTIONS(7455), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4228), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112438] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7684), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114750,7 +131177,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, @@ -114758,6 +131184,7 @@ 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, @@ -114765,10 +131192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119593] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4170), 16, + ACTIONS(7686), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114779,13 +131203,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4168), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112495] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7453), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114794,7 +131231,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, @@ -114802,6 +131238,7 @@ 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, @@ -114809,10 +131246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119640] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4230), 16, + ACTIONS(7455), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114823,13 +131257,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4228), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112552] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7700), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114838,7 +131285,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, @@ -114846,6 +131292,7 @@ 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, @@ -114853,10 +131300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119687] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4186), 16, + ACTIONS(7702), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114867,13 +131311,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4184), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112609] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7704), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114882,7 +131339,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, @@ -114890,6 +131346,7 @@ 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, @@ -114897,10 +131354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119734] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4190), 16, + ACTIONS(7706), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114911,13 +131365,26 @@ static const uint16_t ts_small_parse_table[] = { 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(4188), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112666] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7708), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -114926,7 +131393,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, @@ -114934,6 +131400,7 @@ 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, @@ -114941,10 +131408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119781] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4194), 16, + ACTIONS(7710), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -114955,22 +131419,37 @@ static const uint16_t ts_small_parse_table[] = { 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(4192), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112723] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8358), 1, + anon_sym_COLON, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 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, @@ -114978,6 +131457,7 @@ 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, @@ -114985,36 +131465,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119828] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4426), 16, + ACTIONS(7718), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4424), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112784] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8358), 1, + anon_sym_COLON, + ACTIONS(8360), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 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, @@ -115022,6 +131513,7 @@ 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, @@ -115029,27 +131521,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119875] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4278), 16, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4276), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112845] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7740), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -115058,7 +131559,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, @@ -115066,6 +131566,7 @@ 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, @@ -115073,10 +131574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [119922] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4210), 16, + ACTIONS(7742), 26, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -115087,1932 +131585,21591 @@ static const uint16_t ts_small_parse_table[] = { 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(4208), 23, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [112902] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8362), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7443), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [119969] = 3, + 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_upfrom, + 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, + [112958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 16, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8364), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4212), 23, + ACTIONS(8366), 1, + anon_sym_COLON_COLON, + ACTIONS(7619), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7617), 41, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [120016] = 3, + 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_upfrom, + 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, + [113016] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 16, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8364), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4220), 23, + ACTIONS(8366), 1, + anon_sym_COLON_COLON, + ACTIONS(7718), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7716), 41, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [120063] = 3, + 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_upfrom, + 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, + [113074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 16, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8364), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4300), 23, + ACTIONS(8366), 1, + anon_sym_COLON_COLON, + ACTIONS(7455), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7453), 41, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [120110] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4226), 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, - 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(4224), 23, + 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_upfrom, + 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, + [113132] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7742), 4, + anon_sym_COLON, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7740), 42, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [120157] = 3, + 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_upfrom, + 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, + [113186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 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, - 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(4300), 23, + ACTIONS(7531), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7529), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120204] = 3, + 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_upfrom, + 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, + [113239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 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, - 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(4304), 23, + ACTIONS(7746), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7744), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120251] = 3, + 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_upfrom, + 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, + [113292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 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, - 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(4308), 23, + ACTIONS(7455), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7453), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120298] = 3, + 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_upfrom, + 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, + [113345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 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, - 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(4400), 23, + ACTIONS(7686), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7684), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120345] = 3, + 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_upfrom, + 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, + [113398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 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, - 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(4312), 23, + ACTIONS(7527), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7525), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120392] = 3, + 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_upfrom, + 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, + [113451] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 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, - 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(4316), 23, + ACTIONS(7668), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7666), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120439] = 3, + 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_upfrom, + 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, + [113504] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 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, - 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(4232), 23, + ACTIONS(7648), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7646), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120486] = 3, + 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_upfrom, + 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, + [113557] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 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, - 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(4236), 23, + ACTIONS(7527), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7525), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120533] = 3, + 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_upfrom, + 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, + [113610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 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, - 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(4248), 23, + ACTIONS(8370), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(8368), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120580] = 3, + 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_upfrom, + 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, + [113663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 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, - 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(4252), 23, + ACTIONS(7819), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7817), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120627] = 3, + 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_upfrom, + 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, + [113716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 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, - 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(4256), 23, + ACTIONS(7862), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7860), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120674] = 3, + 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_upfrom, + 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, + [113769] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 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, - 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(4312), 23, + ACTIONS(7714), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7712), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120721] = 3, + 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_upfrom, + 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, + [113822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 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, - 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(4260), 23, + ACTIONS(7483), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7481), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120768] = 3, + 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_upfrom, + 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, + [113875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 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, - 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(4264), 23, + ACTIONS(7507), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7505), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120815] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4270), 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, - 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(4268), 23, + 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_upfrom, + 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, + [113928] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7636), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7634), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120862] = 3, + 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_upfrom, + 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, + [113981] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 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, - 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(4272), 23, + ACTIONS(7632), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7630), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120909] = 3, + 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_upfrom, + 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, + [114034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 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, - 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(4284), 23, + ACTIONS(7615), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7613), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [120956] = 3, + 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_upfrom, + 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, + [114087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 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, - 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(4288), 23, + ACTIONS(7603), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7601), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121003] = 3, + 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_upfrom, + 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, + [114140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 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, - 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(4368), 23, + ACTIONS(7595), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7593), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121050] = 3, + 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_upfrom, + 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, + [114193] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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, - 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(4144), 23, + ACTIONS(7583), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7581), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121097] = 3, + 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_upfrom, + 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, + [114246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 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, - 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(4316), 23, + ACTIONS(8374), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(8372), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121144] = 3, + 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_upfrom, + 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, + [114299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 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, - 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(4244), 23, + ACTIONS(7567), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7565), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121191] = 3, + 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_upfrom, + 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, + [114352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 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, - 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(4280), 23, + ACTIONS(8374), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(8372), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121238] = 3, + 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_upfrom, + 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, + [114405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 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, - 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(4320), 23, + ACTIONS(7547), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7545), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121285] = 3, + 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_upfrom, + 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, + [114458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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, - 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(4508), 23, + ACTIONS(7543), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7541), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121332] = 3, + 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_upfrom, + 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, + [114511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 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, - 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(4328), 23, + ACTIONS(7531), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7529), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121379] = 3, + 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_upfrom, + 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, + [114564] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 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, - 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(4324), 23, + ACTIONS(7523), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7521), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121426] = 3, + 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_upfrom, + 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, + [114617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 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, - 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(4332), 23, + ACTIONS(7515), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7513), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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, - [121473] = 3, + 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_upfrom, + 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, + [114670] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 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, - 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(4344), 23, + ACTIONS(7511), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7509), 42, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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_upfrom, + 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, + [114723] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7503), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7501), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [114776] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7499), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7497), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [114829] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7487), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7485), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [114882] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7644), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7642), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [114935] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7451), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7449), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [114988] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7660), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7658), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115041] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7664), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7662), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115094] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7479), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7477), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115147] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7475), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7473), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115200] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7471), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7469), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115253] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7467), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7465), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115306] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7463), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7461), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115359] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7459), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7457), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115412] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7690), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7688), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115465] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7656), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7654), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115518] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7726), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7724), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115571] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7761), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7759), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115624] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7784), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7782), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115677] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7803), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7801), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115730] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7848), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7846), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115783] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7652), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7650), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115836] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7852), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7850), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115889] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7841), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7839), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115942] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7837), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7835), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [115995] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7833), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7831), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116048] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7826), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7824), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116101] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7815), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7813), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116154] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7792), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7790), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116207] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7768), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7766), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116260] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7678), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7676), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116313] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7489), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116366] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7489), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116419] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7495), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7493), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116472] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7519), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7517), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116525] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8378), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(8376), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116578] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7525), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116631] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7680), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116684] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7640), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7638), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116737] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7553), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116790] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7557), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116843] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7553), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116896] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7557), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [116949] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7563), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7561), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117002] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7571), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7569), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117055] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7575), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7573), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117108] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7579), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7577), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117161] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7587), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7585), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117214] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7589), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117267] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7589), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117320] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7597), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117373] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7597), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117426] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7607), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7605), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117479] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7611), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7609), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117532] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7628), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7626), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117585] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7551), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7549), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117638] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7672), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7670), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117691] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7680), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117744] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7692), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117797] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7696), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117850] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7696), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117903] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7539), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7537), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [117956] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7692), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118009] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7696), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118062] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7696), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118115] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7722), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7720), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118168] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7730), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7728), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118221] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7734), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7732), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118274] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7736), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118327] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7706), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7704), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118380] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7748), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118433] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7744), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118486] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7748), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118539] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7752), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118592] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7736), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118645] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7744), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118698] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7748), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118751] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7744), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118804] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7748), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118857] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7752), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118910] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7772), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7770), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [118963] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7774), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119016] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7774), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119069] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7778), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119122] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7786), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119175] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7774), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119228] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7774), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119281] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7778), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119334] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7786), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119387] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7794), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119440] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7794), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119493] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8382), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(8380), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119546] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7710), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(7708), 42, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [119599] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8388), 1, + anon_sym_cl, + ACTIONS(8390), 1, + anon_sym_loop, + STATE(342), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119660] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8392), 1, + anon_sym_cl, + ACTIONS(8394), 1, + anon_sym_loop, + STATE(359), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119721] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8396), 1, + anon_sym_cl, + ACTIONS(8398), 1, + anon_sym_loop, + STATE(347), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119782] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8400), 1, + anon_sym_cl, + ACTIONS(8402), 1, + anon_sym_loop, + STATE(309), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119843] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8404), 1, + anon_sym_cl, + ACTIONS(8406), 1, + anon_sym_loop, + STATE(322), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119904] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8408), 1, + anon_sym_cl, + ACTIONS(8410), 1, + anon_sym_loop, + STATE(333), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [119965] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8412), 1, + anon_sym_cl, + ACTIONS(8414), 1, + anon_sym_loop, + STATE(351), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120026] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8416), 1, + anon_sym_cl, + ACTIONS(8418), 1, + anon_sym_loop, + STATE(365), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120087] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8420), 1, + anon_sym_cl, + ACTIONS(8422), 1, + anon_sym_loop, + STATE(380), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120148] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4201), 1, + anon_sym_lambda, + ACTIONS(8424), 1, + anon_sym_cl, + ACTIONS(8426), 1, + anon_sym_loop, + STATE(396), 1, + sym_defun_header, + STATE(662), 1, + sym_defun_keyword, + ACTIONS(4199), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(8386), 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, + ACTIONS(8384), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120209] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8428), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 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, + 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(7443), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120259] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7539), 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, + 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(7537), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120306] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7672), 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, + 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(7670), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120353] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 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, + 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(7557), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120400] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 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, + 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(7553), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120447] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7551), 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, + 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(7549), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120494] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 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, + 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(7529), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120541] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 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, + 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(7529), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120588] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7519), 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, + 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(7517), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120635] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7495), 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, + 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(7493), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120682] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 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, + 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(7489), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120729] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 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, + 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(7489), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120776] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7678), 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, + 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(7676), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120823] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7768), 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, + 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(7766), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120870] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7792), 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, + 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(7790), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120917] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7815), 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, + 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(7813), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [120964] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 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, + 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(7794), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121011] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 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, + 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(7794), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121058] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 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, + 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(7786), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121105] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 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, + 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(7778), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121152] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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, + 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(7774), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121199] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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, + 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(7774), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121246] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 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, + 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(7786), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121293] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 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, + 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(7778), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121340] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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, + 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(7774), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121387] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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, + 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(7774), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121434] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7772), 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, + 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(7770), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121481] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 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, + 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(7752), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121528] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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, + 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(7748), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121575] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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, + 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(7744), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121622] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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, + 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(7748), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121669] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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, + 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(7744), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121716] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 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, + 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(7736), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121763] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 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, + 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(7752), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121810] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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, + 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(7748), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121857] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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, + 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(7744), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121904] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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, + 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(7748), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121951] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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, + 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(7744), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [121998] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 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, + 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(7736), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122045] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7734), 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, + 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(7732), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122092] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7730), 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, + 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(7728), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122139] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7722), 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, + 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(7720), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122186] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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, + 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(7696), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122233] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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, + 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(7696), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122280] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7742), 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, + 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(7740), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122327] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 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, + 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(7692), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122374] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 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, + 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(7680), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122421] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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, + 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(7696), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122468] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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, + 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(7696), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122515] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 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, + 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(7692), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122562] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7819), 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, + 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(7817), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122609] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7619), 15, + 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_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(7617), 22, + 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, + 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, + [122660] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7718), 15, + 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_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(7716), 22, + 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, + 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, + [122711] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7710), 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, + 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(7708), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122758] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7706), 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, + 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(7704), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122805] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7702), 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, + 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(7700), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122852] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 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, + 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(7557), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122899] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7455), 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, + 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(7453), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122946] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7686), 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, + 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(7684), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [122993] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8430), 1, + anon_sym_COLON, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(7455), 15, + 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_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(7453), 22, + 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, + 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, + [123044] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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, + 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(7525), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123091] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7668), 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, + 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(7666), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123138] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7664), 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, + 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(7662), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123185] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7660), 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, + 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(7658), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123232] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7451), 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, + 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(7449), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123279] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7648), 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, + 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(7646), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123326] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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, + 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(7525), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123373] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7644), 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, + 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(7642), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123420] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7636), 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, + 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(7634), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123467] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7632), 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, + 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(7630), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123514] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 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, + 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(7680), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123561] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7615), 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, + 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(7613), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123608] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 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, + 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(7553), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123655] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7603), 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, + 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(7601), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123702] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7640), 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, + 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(7638), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123749] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7595), 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, + 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(7593), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123796] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7628), 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, + 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(7626), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123843] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7583), 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, + 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(7581), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123890] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7611), 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, + 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(7609), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123937] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7607), 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, + 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(7605), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [123984] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7567), 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, + 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(7565), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124031] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 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, + 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(7597), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124078] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7826), 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, + 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(7824), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124125] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 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, + 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(7597), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124172] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 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, + 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(7589), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124219] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7547), 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, + 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(7545), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124266] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7543), 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, + 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(7541), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124313] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7535), 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, + 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(7533), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124360] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 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, + 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(7589), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124407] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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, + 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(7525), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124454] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7523), 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, + 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(7521), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124501] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7515), 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, + 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(7513), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124548] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7511), 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, + 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(7509), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124595] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7507), 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, + 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(7505), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124642] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7503), 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, + 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(7501), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124689] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7499), 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, + 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(7497), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124736] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7487), 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, + 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(7485), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124783] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7483), 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, + 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(7481), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124830] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7479), 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, + 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(7477), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124877] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7475), 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, + 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(7473), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124924] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7471), 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, + 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(7469), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [124971] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7467), 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, + 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(7465), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125018] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7463), 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, + 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(7461), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125065] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7459), 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, + 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(7457), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125112] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7690), 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, + 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(7688), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125159] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7656), 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, + 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(7654), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125206] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7587), 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, + 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(7585), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125253] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7833), 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, + 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(7831), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125300] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7714), 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, + 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(7712), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125347] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7726), 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, + 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(7724), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125394] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7761), 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, + 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(7759), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125441] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7579), 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, + 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(7577), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125488] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7784), 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, + 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(7782), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125535] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7575), 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, + 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(7573), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125582] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7803), 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, + 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(7801), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125629] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7571), 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, + 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(7569), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125676] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7563), 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, + 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(7561), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125723] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7837), 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, + 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(7835), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125770] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7848), 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, + 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(7846), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125817] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7652), 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, + 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(7650), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125864] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7862), 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, + 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(7860), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125911] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7852), 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, + 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(7850), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [125958] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7841), 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, + 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(7839), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [126005] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8440), 1, + anon_sym_DQUOTE, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126077] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8454), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126149] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8456), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126221] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8458), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126293] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8460), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126365] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8462), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126437] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8464), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126509] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8466), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126581] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8468), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126653] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8470), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126725] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8472), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126797] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8474), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126869] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8476), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [126941] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8478), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127013] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127085] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8482), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127157] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8484), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127229] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8486), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127301] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8488), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127373] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(8490), 1, + anon_sym_DQUOTE, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127445] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8434), 1, + anon_sym_POUND, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + STATE(2006), 1, + sym_format_prefix_parameters, + STATE(2704), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4020), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8448), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [127514] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7463), 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(7461), 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, + [127558] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7619), 9, + 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(7617), 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, + 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, + [127606] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7455), 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(7453), 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, + [127650] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 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(7786), 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, + [127694] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7539), 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(7537), 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, + [127738] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 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(7778), 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, + [127782] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7852), 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(7850), 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, + [127826] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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(7774), 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, + [127870] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7841), 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(7839), 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, + [127914] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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(7774), 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, + [127958] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 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(7786), 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, + [128002] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 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(7778), 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, + [128046] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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(7774), 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, + [128090] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7833), 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(7831), 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, + [128134] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7826), 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(7824), 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, + [128178] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7819), 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(7817), 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, + [128222] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7837), 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(7835), 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, + [128266] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7792), 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(7790), 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, + [128310] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7768), 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(7766), 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, + [128354] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7678), 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(7676), 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, + [128398] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 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(7489), 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, + [128442] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7491), 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(7489), 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, + [128486] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7495), 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(7493), 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, + [128530] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 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(7774), 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, + [128574] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7772), 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(7770), 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, + [128618] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 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(7752), 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, + [128662] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7519), 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(7517), 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, + [128706] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 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(7529), 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, + [128750] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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(7748), 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, + [128794] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7862), 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(7860), 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, + [128838] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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(7744), 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, + [128882] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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(7748), 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, + [128926] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 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(7597), 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, + [128970] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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(7744), 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, + [129014] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 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(7736), 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, + [129058] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 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(7597), 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, + [129102] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7815), 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(7813), 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, + [129146] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 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(7589), 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, + [129190] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 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(7589), 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, + [129234] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 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(7752), 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, + [129278] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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(7748), 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, + [129322] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7587), 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(7585), 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, + [129366] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7579), 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(7577), 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, + [129410] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7575), 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(7573), 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, + [129454] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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(7744), 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, + [129498] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 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(7748), 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, + [129542] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 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(7744), 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, + [129586] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 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(7736), 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, + [129630] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7734), 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(7732), 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, + [129674] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7730), 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(7728), 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, + [129718] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7722), 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(7720), 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, + [129762] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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(7696), 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, + [129806] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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(7696), 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, + [129850] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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(7696), 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, + [129894] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7652), 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(7650), 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, + [129938] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7848), 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(7846), 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, + [129982] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 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(7692), 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, + [130026] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7803), 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(7801), 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, + [130070] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7784), 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(7782), 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, + [130114] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7761), 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(7759), 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, + [130158] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7726), 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(7724), 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, + [130202] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 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(7794), 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, + [130246] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7714), 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(7712), 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, + [130290] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 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(7680), 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, + [130334] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7656), 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(7654), 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, + [130378] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7690), 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(7688), 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, + [130422] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7459), 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(7457), 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, + [130466] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 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(7794), 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, + [130510] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 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(7529), 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, + [130554] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7467), 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(7465), 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, + [130598] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7471), 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(7469), 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, + [130642] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 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(7696), 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, + [130686] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7475), 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(7473), 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, + [130730] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7479), 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(7477), 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, + [130774] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7483), 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(7481), 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, + [130818] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7487), 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(7485), 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, + [130862] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7499), 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(7497), 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, + [130906] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 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(7692), 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, + [130950] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 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(7680), 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, + [130994] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7672), 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(7670), 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, + [131038] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7640), 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(7638), 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, + [131082] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7503), 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(7501), 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, + [131126] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7523), 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(7521), 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, + [131170] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7571), 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(7569), 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, + [131214] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7628), 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(7626), 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, + [131258] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7611), 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(7609), 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, + [131302] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7607), 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(7605), 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, + [131346] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7507), 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(7505), 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, + [131390] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7511), 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(7509), 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, + [131434] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7515), 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(7513), 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, + [131478] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7563), 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(7561), 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, + [131522] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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(7525), 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, + [131566] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7702), 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(7700), 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, + [131610] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7535), 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(7533), 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, + [131654] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7543), 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(7541), 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, + [131698] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7547), 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(7545), 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, + [131742] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 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(7557), 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, + [131786] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7567), 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(7565), 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, + [131830] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 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(7553), 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, + [131874] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7583), 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(7581), 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, + [131918] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7595), 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(7593), 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, + [131962] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7603), 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(7601), 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, + [132006] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7615), 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(7613), 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, + [132050] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7632), 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(7630), 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, + [132094] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7636), 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(7634), 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, + [132138] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7644), 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(7642), 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, + [132182] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8496), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 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(7443), 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, + [132228] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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(7525), 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, + [132272] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7706), 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(7704), 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, + [132316] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 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(7557), 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, + [132360] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7710), 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(7708), 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, + [132404] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7718), 9, + 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(7716), 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, + 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(7648), 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(7646), 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, + [132496] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 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(7553), 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, + [132540] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7551), 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(7549), 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, + [132584] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7451), 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(7449), 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, + [132628] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7660), 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(7658), 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, + [132672] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7742), 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(7740), 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, + [132716] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7664), 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(7662), 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, + [132760] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7668), 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(7666), 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, + [132804] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 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(7525), 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, + [132848] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8492), 1, + anon_sym_COLON, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(7455), 9, + 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(7453), 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, + 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, + [132896] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7686), 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(7684), 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, + [132940] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7794), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [132983] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7726), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7724), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133026] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7710), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7708), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133069] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7706), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7704), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133112] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7455), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7453), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133155] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7686), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7684), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133198] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7525), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133241] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7668), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7666), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133284] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7525), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133327] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7636), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7634), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133370] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7632), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7630), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133413] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7615), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7613), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133456] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7603), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7601), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133499] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7567), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7565), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133542] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7547), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7545), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133585] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7794), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133628] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7543), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7541), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133671] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7786), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133714] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7778), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133757] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7774), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133800] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7774), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133843] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7788), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7786), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133886] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7780), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7778), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133929] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7774), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [133972] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7776), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7774), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134015] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7772), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7770), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134058] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7752), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134101] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7748), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134144] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7744), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134187] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7748), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134230] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7744), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134273] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7736), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134316] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7754), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7752), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134359] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7748), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134402] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7744), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134445] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7750), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7748), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134488] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7746), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7744), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134531] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7738), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7736), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134574] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7734), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7732), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134617] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7730), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7728), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134660] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7722), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7720), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134703] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7696), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134746] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7696), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7692), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134832] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7680), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134875] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7696), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134918] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7698), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7696), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [134961] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7694), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7692), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135004] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7682), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7680), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135047] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7672), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7670), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135090] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7640), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7638), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135133] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7628), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7626), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135176] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7611), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7609), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135219] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7597), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135262] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7599), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7597), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135305] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7589), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135348] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7591), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7589), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135391] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7587), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7585), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135434] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7579), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7577), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135477] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7575), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7573), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135520] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7557), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135563] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7553), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135606] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7559), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7557), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135649] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7553), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + 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, + [135692] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7551), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7549), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, 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_upfrom, + 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, - [121520] = 3, + [135735] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 16, + ACTIONS(7539), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4508), 23, + anon_sym_being, + ACTIONS(7537), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121567] = 3, + [135778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 16, + ACTIONS(7491), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4348), 23, + anon_sym_being, + ACTIONS(7489), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121614] = 3, + [135821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 16, + ACTIONS(7491), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4336), 23, + anon_sym_being, + ACTIONS(7489), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121661] = 3, + [135864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 16, + ACTIONS(7768), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4340), 23, + anon_sym_being, + ACTIONS(7766), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121708] = 3, + [135907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 16, + ACTIONS(7792), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4424), 23, + anon_sym_being, + ACTIONS(7790), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121755] = 3, + [135950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 16, + ACTIONS(7815), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4400), 23, + anon_sym_being, + ACTIONS(7813), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121802] = 3, + [135993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 16, + ACTIONS(7826), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4352), 23, + anon_sym_being, + ACTIONS(7824), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121849] = 3, + [136036] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 16, + ACTIONS(7833), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4360), 23, + anon_sym_being, + ACTIONS(7831), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121896] = 3, + [136079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 16, + ACTIONS(7652), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4360), 23, + anon_sym_being, + ACTIONS(7650), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121943] = 3, + [136122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 16, + ACTIONS(7848), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7846), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, + 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_upfrom, + 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, + [136165] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7784), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(7782), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4372), 23, + 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_upfrom, + 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, + [136208] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7761), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7759), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [121990] = 3, + [136251] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 16, + ACTIONS(8501), 1, + anon_sym_POUND_, + ACTIONS(8498), 2, + sym__ws, + sym_comment, + STATE(1967), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7405), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117023,22 +153180,12 @@ static const uint16_t ts_small_parse_table[] = { 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(4356), 23, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(7407), 19, 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, @@ -117053,186 +153200,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122037] = 3, + [136300] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 16, + ACTIONS(7656), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4364), 23, + anon_sym_being, + ACTIONS(7654), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [122084] = 3, + [136343] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 16, + ACTIONS(7690), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7688), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, + 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_upfrom, + 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, + [136386] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7467), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(7465), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4376), 23, + 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_upfrom, + 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, + [136429] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7471), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7469), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [122131] = 3, + [136472] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 16, + ACTIONS(7475), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7473), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, + 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_upfrom, + 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, + [136515] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7479), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(7477), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4380), 23, + 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_upfrom, + 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, + [136558] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7511), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7509), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [122178] = 3, + [136601] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 16, + ACTIONS(7515), 3, anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7513), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, + 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_upfrom, + 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, + [136644] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7523), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_being, + ACTIONS(7521), 32, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4240), 23, + 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_upfrom, + 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, + [136687] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7527), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(7525), 32, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_COLON, 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_upfrom, + 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, - [122225] = 3, + [136730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 16, + ACTIONS(8506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117243,13 +153614,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4144), 23, + ACTIONS(8504), 24, sym__ws, sym_comment, anon_sym_POUND_, @@ -117259,6 +153624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -117273,10 +153639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122272] = 3, + [136772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 16, + ACTIONS(8510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117287,13 +153653,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4408), 23, + ACTIONS(8508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117317,31 +153677,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122319] = 3, + [136813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8512), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4412), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117361,10 +153717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122366] = 3, + [136858] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 16, + ACTIONS(8516), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117375,13 +153731,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4428), 23, + ACTIONS(8514), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117405,10 +153755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122413] = 3, + [136899] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 16, + ACTIONS(8520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117419,13 +153769,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4436), 23, + ACTIONS(8518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117449,10 +153793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122460] = 3, + [136940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 16, + ACTIONS(8520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117463,13 +153807,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4440), 23, + ACTIONS(8518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117493,31 +153831,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122507] = 3, + [136981] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8522), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4144), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117537,33 +153871,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122554] = 5, + [137026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, - anon_sym_COLON, - ACTIONS(5037), 1, - anon_sym_COLON_COLON, - ACTIONS(4466), 15, + ACTIONS(8520), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4464), 22, + ACTIONS(8518), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117583,10 +153909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122605] = 3, + [137067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 16, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117597,13 +153923,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4472), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117627,10 +153947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122652] = 3, + [137108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 16, + ACTIONS(8520), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117641,13 +153961,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4464), 23, + ACTIONS(8518), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -117671,31 +153985,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122699] = 3, + [137149] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8528), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4292), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117715,31 +154025,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122746] = 3, + [137194] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8530), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4480), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117759,31 +154065,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122793] = 3, + [137239] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8532), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4488), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117803,10 +154105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122840] = 3, + [137284] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 16, + ACTIONS(8536), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117817,13 +154119,8 @@ static const uint16_t ts_small_parse_table[] = { 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(4492), 23, + ACTIONS(8534), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -117832,7 +154129,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, @@ -117847,33 +154143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122887] = 5, + [137325] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, - anon_sym_COLON, - ACTIONS(5037), 1, - anon_sym_COLON_COLON, - ACTIONS(4498), 15, + ACTIONS(8540), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4496), 22, + ACTIONS(8538), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117893,33 +154181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122938] = 5, + [137366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5035), 1, - anon_sym_COLON, - ACTIONS(5037), 1, - anon_sym_COLON_COLON, - ACTIONS(4502), 15, + ACTIONS(8544), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4500), 22, + ACTIONS(8542), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117939,31 +154219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [122989] = 3, + [137407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8546), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4372), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -117983,10 +154259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123036] = 3, + [137452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 16, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -117997,13 +154273,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4384), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118027,10 +154297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123083] = 3, + [137493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 16, + ACTIONS(8544), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118041,13 +154311,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4392), 23, + ACTIONS(8542), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118071,31 +154335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123130] = 3, + [137534] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8552), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4396), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -118115,10 +154375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123177] = 3, + [137579] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 16, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118129,13 +154389,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4292), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118159,10 +154413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123224] = 3, + [137620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 16, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118173,13 +154427,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4404), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118203,10 +154451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123271] = 3, + [137661] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 16, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118217,13 +154465,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4140), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118247,10 +154489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123318] = 3, + [137702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 16, + ACTIONS(8556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118261,13 +154503,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4512), 23, + ACTIONS(8554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118291,10 +154527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123365] = 3, + [137743] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 16, + ACTIONS(8556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118305,13 +154541,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4296), 23, + ACTIONS(8554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118335,10 +154565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123412] = 3, + [137784] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 16, + ACTIONS(8556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118349,13 +154579,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4416), 23, + ACTIONS(8554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118379,10 +154603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123459] = 3, + [137825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 16, + ACTIONS(8556), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118393,13 +154617,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4420), 23, + ACTIONS(8554), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118423,10 +154641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123506] = 3, + [137866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 16, + ACTIONS(8560), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118437,13 +154655,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4432), 23, + ACTIONS(8558), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118467,10 +154679,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123553] = 3, + [137907] = 12, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8446), 1, + anon_sym_COMMA, + ACTIONS(8452), 1, + anon_sym_SLASH, + STATE(2696), 1, + sym_format_modifiers, + STATE(2982), 1, + sym__format_token, + STATE(3101), 1, + aux_sym_format_modifiers_repeat1, + STATE(4018), 1, + sym_format_directive_type, + ACTIONS(8438), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(8450), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(8442), 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, + [137966] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 16, + ACTIONS(8564), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118481,13 +154740,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4432), 23, + ACTIONS(8562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118511,10 +154764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123600] = 3, + [138007] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 16, + ACTIONS(8564), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118525,13 +154778,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4416), 23, + ACTIONS(8562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118555,10 +154802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123647] = 3, + [138048] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 16, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118569,13 +154816,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4420), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118599,10 +154840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123694] = 3, + [138089] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 16, + ACTIONS(8564), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118613,13 +154854,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4432), 23, + ACTIONS(8562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118643,31 +154878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123741] = 3, + [138130] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8566), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4432), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -118687,31 +154918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123788] = 3, + [138175] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8568), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4444), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -118731,10 +154958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123835] = 3, + [138220] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 16, + ACTIONS(8550), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118745,13 +154972,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4448), 23, + ACTIONS(8548), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118775,10 +154996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123882] = 3, + [138261] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 16, + ACTIONS(8526), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118789,13 +155010,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4452), 23, + ACTIONS(8524), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118819,10 +155034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123929] = 3, + [138302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 16, + ACTIONS(8572), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118833,13 +155048,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4456), 23, + ACTIONS(8570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118863,10 +155072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [123976] = 3, + [138343] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(8572), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118877,13 +155086,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4460), 23, + ACTIONS(8570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118907,31 +155110,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124023] = 3, + [138384] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(8494), 1, + anon_sym_COLON_COLON, + ACTIONS(8574), 1, + anon_sym_COLON, + ACTIONS(7619), 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(4476), 23, + ACTIONS(7617), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -118951,10 +155150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124070] = 3, + [138429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(8578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118965,13 +155164,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4460), 23, + ACTIONS(8576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118995,10 +155188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124117] = 3, + [138470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(8578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119009,13 +155202,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4476), 23, + ACTIONS(8576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119039,10 +155226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124164] = 3, + [138511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 16, + ACTIONS(8578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119053,13 +155240,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4508), 23, + ACTIONS(8576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119083,10 +155264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124211] = 3, + [138552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 16, + ACTIONS(8578), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119097,13 +155278,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4484), 23, + ACTIONS(8576), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119127,10 +155302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124258] = 3, + [138593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 16, + ACTIONS(8572), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119141,13 +155316,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4456), 23, + ACTIONS(8570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119171,10 +155340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124305] = 3, + [138634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(8572), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119185,13 +155354,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4460), 23, + ACTIONS(8570), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119215,10 +155378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124352] = 3, + [138675] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(8582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119229,13 +155392,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4476), 23, + ACTIONS(8580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119259,10 +155416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124399] = 3, + [138716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 16, + ACTIONS(8582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119273,13 +155430,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4460), 23, + ACTIONS(8580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119303,10 +155454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124446] = 3, + [138757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 16, + ACTIONS(8582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119317,13 +155468,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4476), 23, + ACTIONS(8580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119347,10 +155492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124493] = 3, + [138798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 16, + ACTIONS(8582), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119361,13 +155506,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4484), 23, + ACTIONS(8580), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119391,10 +155530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [124540] = 3, + [138839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 16, + ACTIONS(8586), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119405,13 +155544,7 @@ static const uint16_t ts_small_parse_table[] = { 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(4504), 23, + ACTIONS(8584), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119428,1191 +155561,207 @@ static const uint16_t ts_small_parse_table[] = { 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, - [124587] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5039), 1, - anon_sym_POUND, - ACTIONS(5041), 1, - aux_sym_num_lit_token1, - ACTIONS(5045), 1, - anon_sym_DQUOTE, - 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, - [124659] = 16, - 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, - ACTIONS(5059), 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, - [124731] = 16, - 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, - ACTIONS(5061), 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, - [124803] = 16, - 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, - ACTIONS(5063), 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, - [124875] = 16, - 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, - ACTIONS(5065), 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, - [124947] = 16, - 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, - ACTIONS(5067), 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, - [125019] = 16, - 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, - ACTIONS(5069), 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, - [125091] = 16, - 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, - ACTIONS(5071), 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, - [125163] = 16, - 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, - ACTIONS(5073), 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, - [125235] = 16, - 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, - ACTIONS(5075), 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, - [125307] = 16, - 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, - ACTIONS(5077), 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, - [125379] = 16, - 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, - ACTIONS(5079), 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, - [125451] = 16, - 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, - ACTIONS(5081), 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, - [125523] = 16, - 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, - ACTIONS(5083), 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, - [125595] = 16, - 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, - ACTIONS(5085), 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, - [125667] = 16, - 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, - ACTIONS(5087), 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, - [125739] = 16, + 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, + [138880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5039), 1, + ACTIONS(8586), 10, anon_sym_POUND, - ACTIONS(5041), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5051), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5089), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8584), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, 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, - [125811] = 16, + 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, + [138921] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5039), 1, + ACTIONS(8590), 10, anon_sym_POUND, - ACTIONS(5041), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5051), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5091), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8588), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, 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, - [125883] = 16, + 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, + [138962] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5039), 1, + ACTIONS(8590), 10, anon_sym_POUND, - ACTIONS(5041), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5051), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5093), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8588), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, 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, - [125955] = 16, + 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, + [139003] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5039), 1, + ACTIONS(8594), 10, anon_sym_POUND, - ACTIONS(5041), 1, + anon_sym_DOT, aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5051), 1, + anon_sym_COLON, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5095), 1, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8592), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, 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, + 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, + [139044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5039), 1, + ACTIONS(8594), 10, anon_sym_POUND, - ACTIONS(5041), 1, + anon_sym_DOT, 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, + sym_nil_lit, + aux_sym_sym_lit_token1, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + ACTIONS(8592), 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_POUNDP, + anon_sym_POUNDp, + sym_self_referential_reader_macro, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 10, + ACTIONS(8564), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120623,8 +155772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4396), 26, - ts_builtin_sym_end, + ACTIONS(8562), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120634,8 +155782,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, @@ -120650,10 +155796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126140] = 3, + [139126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 10, + ACTIONS(8598), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120664,8 +155810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4180), 26, - ts_builtin_sym_end, + ACTIONS(8596), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -120674,9 +155819,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, @@ -120691,19 +155833,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126184] = 6, + [139166] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5100), 1, + ACTIONS(8602), 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(8600), 22, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(5097), 2, + 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, + [139206] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8607), 1, + anon_sym_POUND_, + ACTIONS(8610), 1, + anon_sym_COLON, + ACTIONS(8615), 1, + anon_sym_cl, + ACTIONS(8618), 1, + anon_sym_into, + ACTIONS(8604), 2, sym__ws, sym_comment, - STATE(1447), 3, + STATE(3107), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4102), 11, + ACTIONS(8613), 23, + 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_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, + [139256] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8622), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120714,8 +155926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(4104), 19, + ACTIONS(8620), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -120735,10 +155949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126234] = 3, + [139296] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 10, + ACTIONS(8626), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120749,8 +155963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4512), 26, - ts_builtin_sym_end, + ACTIONS(8624), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -120759,9 +155972,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, @@ -120776,35 +155986,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126278] = 5, + [139336] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON, - ACTIONS(5105), 1, - anon_sym_COLON_COLON, - ACTIONS(4502), 9, + ACTIONS(8630), 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(4500), 25, - ts_builtin_sym_end, + ACTIONS(8628), 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_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120819,35 +156023,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126326] = 5, + [139376] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5103), 1, - anon_sym_COLON, - ACTIONS(5105), 1, - anon_sym_COLON_COLON, - ACTIONS(4498), 9, + ACTIONS(8634), 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(4496), 25, - ts_builtin_sym_end, + ACTIONS(8632), 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_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -120862,10 +156060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126374] = 3, + [139416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 10, + ACTIONS(8638), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120876,8 +156074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4492), 26, - ts_builtin_sym_end, + ACTIONS(8636), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -120886,9 +156083,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, @@ -120903,10 +156097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126418] = 3, + [139456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 10, + ACTIONS(8642), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120917,8 +156111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4488), 26, - ts_builtin_sym_end, + ACTIONS(8640), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -120927,9 +156120,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, @@ -120944,15347 +156134,15832 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [126462] = 3, + [139496] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8647), 1, + anon_sym_POUND_, + ACTIONS(8650), 1, + anon_sym_COLON, + ACTIONS(8655), 1, + anon_sym_cl, + ACTIONS(8658), 1, + anon_sym_into, + ACTIONS(8644), 2, + sym__ws, + sym_comment, + STATE(3105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8653), 23, + 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_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, + [139546] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8663), 1, + anon_sym_POUND_, + ACTIONS(8660), 2, + sym__ws, + sym_comment, + STATE(2426), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8666), 25, + anon_sym_COLON, + 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, + [139589] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7605), 31, + sym__ws, + sym_comment, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [139626] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8668), 2, + sym__ws, + sym_comment, + STATE(2456), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, + 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, + [139669] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8679), 1, + anon_sym_POUND_, + ACTIONS(8676), 2, + sym__ws, + sym_comment, + STATE(2139), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8682), 25, + anon_sym_COLON, + 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, + [139712] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8687), 1, + anon_sym_POUND_, + ACTIONS(8684), 2, + sym__ws, + sym_comment, + STATE(2088), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8690), 25, + anon_sym_COLON, + 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, + [139755] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8679), 1, + anon_sym_POUND_, + ACTIONS(8692), 2, + sym__ws, + sym_comment, + STATE(2133), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8682), 25, + anon_sym_COLON, + 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, + [139798] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8695), 2, + sym__ws, + sym_comment, + STATE(2455), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, + 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, + [139841] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, + 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, + [139884] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8706), 2, + sym__ws, + sym_comment, + STATE(2453), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, + 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, + [139927] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, + 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, + [139970] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, + 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, + [140013] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8712), 1, + anon_sym_POUND_, + ACTIONS(8709), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8715), 25, + anon_sym_COLON, + 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, + [140056] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8720), 1, + anon_sym_POUND_, + ACTIONS(8717), 2, + sym__ws, + sym_comment, + STATE(2452), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8723), 25, + anon_sym_COLON, + 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, + [140099] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, + anon_sym_COLON, + 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, + [140142] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8736), 1, + anon_sym_POUND_, + ACTIONS(8733), 2, + sym__ws, + sym_comment, + STATE(2195), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8739), 25, + anon_sym_COLON, + 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, + [140185] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, + anon_sym_COLON, + 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, + [140228] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 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(4480), 26, - ts_builtin_sym_end, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, + anon_sym_COLON, 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, - [126506] = 3, + 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, + [140271] = 5, ACTIONS(47), 1, sym_block_comment, - 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(4464), 26, - ts_builtin_sym_end, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, 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, - [126550] = 3, + 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, + [140314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 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(4472), 26, - ts_builtin_sym_end, + ACTIONS(8744), 1, + anon_sym_POUND_, + ACTIONS(8741), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2119), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8747), 25, + anon_sym_COLON, 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, - [126594] = 5, + 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, + [140357] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4464), 25, - ts_builtin_sym_end, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8749), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2449), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, 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, - [126642] = 3, + 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, + [140400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 26, - ts_builtin_sym_end, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8752), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2448), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, 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, - [126686] = 3, + 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, + [140443] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 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(4440), 26, - ts_builtin_sym_end, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(8755), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2357), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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, - [126730] = 3, + 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, + [140486] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 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(4436), 26, - ts_builtin_sym_end, + ACTIONS(8766), 1, + anon_sym_POUND_, + ACTIONS(8763), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8769), 25, + anon_sym_COLON, 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, - [126774] = 3, + 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, + [140529] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 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(4428), 26, - ts_builtin_sym_end, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, 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, - [126818] = 3, + 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, + [140572] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 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(4412), 26, - ts_builtin_sym_end, + ACTIONS(8774), 1, + anon_sym_POUND_, + ACTIONS(8771), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8777), 25, + anon_sym_COLON, 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, - [126862] = 3, + 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, + [140615] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 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(4408), 26, - ts_builtin_sym_end, + ACTIONS(8736), 1, + anon_sym_POUND_, + ACTIONS(8779), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2332), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8739), 25, + anon_sym_COLON, 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, - [126906] = 3, + 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, + [140658] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 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(4292), 26, - ts_builtin_sym_end, + ACTIONS(8671), 1, + anon_sym_POUND_, + ACTIONS(8782), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2445), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8674), 25, + anon_sym_COLON, 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, - [126950] = 3, + 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, + [140701] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 26, - ts_builtin_sym_end, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, 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, - [126994] = 3, + 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, + [140744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 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(4388), 26, - ts_builtin_sym_end, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, 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, - [127038] = 3, + 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, + [140787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 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(4380), 26, - ts_builtin_sym_end, + ACTIONS(8712), 1, + anon_sym_POUND_, + ACTIONS(8709), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8715), 25, + anon_sym_COLON, 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, - [127082] = 3, + 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, + [140830] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 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(4376), 26, - ts_builtin_sym_end, + ACTIONS(8720), 1, + anon_sym_POUND_, + ACTIONS(8785), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2317), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8723), 25, + anon_sym_COLON, 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, - [127126] = 3, + 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, + [140873] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 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(4364), 26, - ts_builtin_sym_end, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, + anon_sym_COLON, 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, - [127170] = 3, + 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, + [140916] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 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(4356), 26, - ts_builtin_sym_end, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, + anon_sym_COLON, 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, - [127214] = 3, + 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, + [140959] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8728), 1, + anon_sym_POUND_, + ACTIONS(8725), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8731), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(4340), 26, - ts_builtin_sym_end, + 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, + [141002] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8791), 1, + anon_sym_POUND_, + ACTIONS(8788), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8794), 25, + anon_sym_COLON, 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, - [127258] = 3, + 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, + [141045] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 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(4336), 26, - ts_builtin_sym_end, + ACTIONS(8799), 1, + anon_sym_POUND_, + ACTIONS(8796), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2443), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8802), 25, + anon_sym_COLON, 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, - [127302] = 3, + 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, + [141088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 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(4324), 26, - ts_builtin_sym_end, + ACTIONS(8687), 1, + anon_sym_POUND_, + ACTIONS(8804), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2154), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8690), 25, + anon_sym_COLON, 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, - [127346] = 3, + 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, + [141131] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 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(4320), 26, - ts_builtin_sym_end, + ACTIONS(8810), 1, + anon_sym_POUND_, + ACTIONS(8807), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8813), 25, + anon_sym_COLON, 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, - [127390] = 3, + 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, + [141174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 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(4280), 26, - ts_builtin_sym_end, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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, - [127434] = 3, + 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, + [141217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 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(4244), 26, - ts_builtin_sym_end, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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, - [127478] = 3, + 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, + [141260] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 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(4484), 26, - ts_builtin_sym_end, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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, - [127522] = 3, + 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, + [141303] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 26, - ts_builtin_sym_end, + ACTIONS(8826), 1, + anon_sym_POUND_, + ACTIONS(8823), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8829), 25, + anon_sym_COLON, 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, - [127566] = 3, + 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, + [141346] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 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(4368), 26, - ts_builtin_sym_end, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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, - [127610] = 3, + 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, + [141389] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 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(4288), 26, - ts_builtin_sym_end, + ACTIONS(8842), 1, + anon_sym_POUND_, + ACTIONS(8839), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8845), 25, + anon_sym_COLON, 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, - [127654] = 3, + 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, + [141432] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 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(4284), 26, - ts_builtin_sym_end, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(8847), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2438), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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, - [127698] = 3, + 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, + [141475] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 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(4272), 26, - ts_builtin_sym_end, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(8855), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2435), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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, - [127742] = 4, + 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, + [141518] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5107), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 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(4134), 25, - ts_builtin_sym_end, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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, + 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, + [141561] = 5, 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, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(8858), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2433), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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, - [127832] = 3, + 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, + [141604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 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(4260), 26, - ts_builtin_sym_end, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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, - [127876] = 3, + 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, + [141647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 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(4256), 26, - ts_builtin_sym_end, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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, - [127920] = 3, + 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, + [141690] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 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(4252), 26, - ts_builtin_sym_end, + ACTIONS(8864), 1, + anon_sym_POUND_, + ACTIONS(8861), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8867), 25, + anon_sym_COLON, 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, - [127964] = 3, + 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, + [141733] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 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(4248), 26, - ts_builtin_sym_end, + ACTIONS(8872), 1, + anon_sym_POUND_, + ACTIONS(8869), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2428), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8875), 25, + anon_sym_COLON, 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, - [128008] = 3, + 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, + [141776] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 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(4236), 26, - ts_builtin_sym_end, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, + anon_sym_COLON, 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, - [128052] = 3, + 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, + [141819] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(4232), 26, - ts_builtin_sym_end, + 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, + [141862] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, + anon_sym_COLON, 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, - [128096] = 3, + 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, + [141905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 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(4224), 26, - ts_builtin_sym_end, + ACTIONS(8888), 1, + anon_sym_POUND_, + ACTIONS(8885), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2417), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8891), 25, + anon_sym_COLON, 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, - [128140] = 3, + 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, + [141948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 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(4220), 26, - ts_builtin_sym_end, + ACTIONS(8896), 1, + anon_sym_POUND_, + ACTIONS(8893), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8899), 25, + anon_sym_COLON, 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, - [128184] = 3, + 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, + [141991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 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(4212), 26, - ts_builtin_sym_end, + ACTIONS(8896), 1, + anon_sym_POUND_, + ACTIONS(8893), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8899), 25, + anon_sym_COLON, 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, - [128228] = 3, + 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, + [142034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 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(4208), 26, - ts_builtin_sym_end, + ACTIONS(8896), 1, + anon_sym_POUND_, + ACTIONS(8893), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8899), 25, + anon_sym_COLON, 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, - [128272] = 3, + 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, + [142077] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 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(4192), 26, - ts_builtin_sym_end, + ACTIONS(8904), 1, + anon_sym_POUND_, + ACTIONS(8901), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8907), 25, + anon_sym_COLON, 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, - [128316] = 3, + 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, + [142120] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 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(4188), 26, - ts_builtin_sym_end, + ACTIONS(8912), 1, + anon_sym_POUND_, + ACTIONS(8909), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8915), 25, + anon_sym_COLON, 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, - [128360] = 3, + 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, + [142163] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 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(4184), 26, - ts_builtin_sym_end, + ACTIONS(8744), 1, + anon_sym_POUND_, + ACTIONS(8917), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2115), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8747), 25, + anon_sym_COLON, 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, - [128404] = 3, + 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, + [142206] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 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(4168), 26, - ts_builtin_sym_end, + ACTIONS(8923), 1, + anon_sym_POUND_, + ACTIONS(8920), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2333), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8926), 25, + anon_sym_COLON, 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, - [128448] = 3, + 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, + [142249] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4154), 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), 26, - ts_builtin_sym_end, + ACTIONS(8931), 1, + anon_sym_POUND_, + ACTIONS(8928), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8934), 25, + anon_sym_COLON, 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, + 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, + [142292] = 5, 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, + ACTIONS(8931), 1, + anon_sym_POUND_, + ACTIONS(8928), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8934), 25, + anon_sym_COLON, 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, + 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, + [142335] = 5, 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, + ACTIONS(8923), 1, + anon_sym_POUND_, + ACTIONS(8936), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2327), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8926), 25, + anon_sym_COLON, 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, - [128580] = 3, + 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, + [142378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 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(4160), 26, - ts_builtin_sym_end, + ACTIONS(8912), 1, + anon_sym_POUND_, + ACTIONS(8909), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8915), 25, + anon_sym_COLON, 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, - [128624] = 3, + 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, + [142421] = 5, 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, + ACTIONS(8942), 1, + anon_sym_POUND_, + ACTIONS(8939), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2111), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8945), 25, + anon_sym_COLON, 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, + 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, + [142464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 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(4148), 26, - ts_builtin_sym_end, + ACTIONS(8950), 1, + anon_sym_POUND_, + ACTIONS(8947), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8953), 25, + anon_sym_COLON, 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, - [128712] = 3, + 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, + [142507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4518), 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(4516), 26, - ts_builtin_sym_end, + ACTIONS(8923), 1, + anon_sym_POUND_, + ACTIONS(8955), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2322), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8926), 25, + anon_sym_COLON, 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, - [128756] = 3, + 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, + [142550] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 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(4200), 26, - ts_builtin_sym_end, + ACTIONS(8961), 1, + anon_sym_POUND_, + ACTIONS(8958), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8964), 25, + anon_sym_COLON, 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, - [128800] = 3, + 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, + [142593] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 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(4196), 26, - ts_builtin_sym_end, + ACTIONS(8969), 1, + anon_sym_POUND_, + ACTIONS(8966), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8972), 25, + anon_sym_COLON, 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, - [128844] = 3, + 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, + [142636] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8977), 1, + anon_sym_POUND_, + ACTIONS(8974), 2, + sym__ws, + sym_comment, + STATE(2319), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8980), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(4216), 26, - ts_builtin_sym_end, + 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, + [142679] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8977), 1, + anon_sym_POUND_, + ACTIONS(8982), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2194), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8980), 25, + anon_sym_COLON, 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, - [128888] = 3, + 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, + [142722] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 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(4292), 26, - ts_builtin_sym_end, + ACTIONS(8961), 1, + anon_sym_POUND_, + ACTIONS(8958), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8964), 25, + anon_sym_COLON, 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, - [128932] = 3, + 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, + [142765] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 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(4164), 26, - ts_builtin_sym_end, + ACTIONS(8988), 1, + anon_sym_POUND_, + ACTIONS(8985), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2314), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8991), 25, + anon_sym_COLON, 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, - [128976] = 3, + 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, + [142808] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 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(4204), 26, - ts_builtin_sym_end, + ACTIONS(8996), 1, + anon_sym_POUND_, + ACTIONS(8993), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8999), 25, + anon_sym_COLON, 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, - [129020] = 3, + 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, + [142851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 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(4268), 26, - ts_builtin_sym_end, + ACTIONS(9004), 1, + anon_sym_POUND_, + ACTIONS(9001), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9007), 25, + anon_sym_COLON, 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, - [129064] = 3, + 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, + [142894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 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(4228), 26, - ts_builtin_sym_end, + ACTIONS(8942), 1, + anon_sym_POUND_, + ACTIONS(9009), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8945), 25, + anon_sym_COLON, 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, - [129108] = 3, + 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, + [142937] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 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(4228), 26, - ts_builtin_sym_end, + ACTIONS(8988), 1, + anon_sym_POUND_, + ACTIONS(9012), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2309), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8991), 25, + anon_sym_COLON, 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, - [129152] = 3, + 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, + [142980] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 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(4276), 26, - ts_builtin_sym_end, + ACTIONS(8996), 1, + anon_sym_POUND_, + ACTIONS(8993), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8999), 25, + anon_sym_COLON, 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, - [129196] = 3, + 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, + [143023] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 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(4296), 26, - ts_builtin_sym_end, + ACTIONS(9018), 1, + anon_sym_POUND_, + ACTIONS(9015), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9021), 25, + anon_sym_COLON, 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, + 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, + [143066] = 5, 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(4300), 26, - ts_builtin_sym_end, + ACTIONS(8988), 1, + anon_sym_POUND_, + ACTIONS(9023), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2203), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8991), 25, + anon_sym_COLON, 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, - [129284] = 3, + 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, + [143109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 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(4240), 26, - ts_builtin_sym_end, + ACTIONS(8988), 1, + anon_sym_POUND_, + ACTIONS(9026), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2200), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8991), 25, + anon_sym_COLON, 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, - [129328] = 3, + 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, + [143152] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 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(4304), 26, - ts_builtin_sym_end, + ACTIONS(8996), 1, + anon_sym_POUND_, + ACTIONS(8993), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8999), 25, + anon_sym_COLON, 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, - [129372] = 3, + 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, + [143195] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 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(4308), 26, - ts_builtin_sym_end, + ACTIONS(8977), 1, + anon_sym_POUND_, + ACTIONS(9029), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2199), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8980), 25, + anon_sym_COLON, 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, + 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, + [143238] = 5, 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, + ACTIONS(8766), 1, + anon_sym_POUND_, + ACTIONS(8763), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8769), 25, + anon_sym_COLON, 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, + 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, + [143281] = 5, 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, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, + 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, + [143324] = 5, 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, + ACTIONS(9004), 1, + anon_sym_POUND_, + ACTIONS(9001), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9007), 25, + anon_sym_COLON, 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, + 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, + [143367] = 5, 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, + ACTIONS(8663), 1, + anon_sym_POUND_, + ACTIONS(9040), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2167), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8666), 25, + anon_sym_COLON, 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, - [129592] = 3, + 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, + [143410] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 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(4328), 26, - ts_builtin_sym_end, + ACTIONS(9046), 1, + anon_sym_POUND_, + ACTIONS(9043), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2136), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9049), 25, + anon_sym_COLON, 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, - [129636] = 3, + 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, + [143453] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(9054), 1, + anon_sym_POUND_, + ACTIONS(9051), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9057), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(4300), 26, - ts_builtin_sym_end, + 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, + [143496] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9062), 1, + anon_sym_POUND_, + ACTIONS(9059), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9065), 25, + anon_sym_COLON, 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, - [129680] = 3, + 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, + [143539] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 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(4332), 26, - ts_builtin_sym_end, + ACTIONS(8663), 1, + anon_sym_POUND_, + ACTIONS(9067), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2253), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8666), 25, + anon_sym_COLON, 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, - [129724] = 3, + 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, + [143582] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 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(4344), 26, - ts_builtin_sym_end, + ACTIONS(9004), 1, + anon_sym_POUND_, + ACTIONS(9001), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9007), 25, + anon_sym_COLON, 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, - [129768] = 3, + 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, + [143625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 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(4348), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9070), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2263), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [129812] = 3, + 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, + [143668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 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(4352), 26, - ts_builtin_sym_end, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, - [129856] = 3, + 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, + [143711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 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(4360), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9078), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2277), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [129900] = 3, + 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, + [143754] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 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(4360), 26, - ts_builtin_sym_end, + ACTIONS(9084), 1, + anon_sym_POUND_, + ACTIONS(9081), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9087), 25, + anon_sym_COLON, 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, - [129944] = 3, + 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, + [143797] = 5, ACTIONS(47), 1, sym_block_comment, - 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(4372), 26, - ts_builtin_sym_end, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9089), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2337), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, - [129988] = 3, + 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, + [143840] = 5, ACTIONS(47), 1, sym_block_comment, - 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(4372), 26, - ts_builtin_sym_end, + ACTIONS(9100), 1, + anon_sym_POUND_, + ACTIONS(9097), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 25, + anon_sym_COLON, 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, - [130032] = 3, + 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, + [143883] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 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(4400), 26, - ts_builtin_sym_end, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9103), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2348), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, - [130076] = 3, + 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, + [143926] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 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(4392), 26, - ts_builtin_sym_end, + ACTIONS(9084), 1, + anon_sym_POUND_, + ACTIONS(9081), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9087), 25, + anon_sym_COLON, 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, - [130120] = 3, + 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, + [143969] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 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(4404), 26, - ts_builtin_sym_end, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9106), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2380), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, - [130164] = 3, + 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, + [144012] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 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(4140), 26, - ts_builtin_sym_end, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, - [130208] = 3, + 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, + [144055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 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(4416), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9109), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2406), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [130252] = 3, + 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, + [144098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 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(4420), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9112), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2408), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [130296] = 3, + 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, + [144141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 26, - ts_builtin_sym_end, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, - [130340] = 3, + 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, + [144184] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 26, - ts_builtin_sym_end, + ACTIONS(8663), 1, + anon_sym_POUND_, + ACTIONS(9115), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2410), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8666), 25, + anon_sym_COLON, 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, - [130384] = 3, + 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, + [144227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 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(4384), 26, - ts_builtin_sym_end, + ACTIONS(8842), 1, + anon_sym_POUND_, + ACTIONS(8839), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8845), 25, + anon_sym_COLON, 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, - [130428] = 3, + 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, + [144270] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8744), 1, + anon_sym_POUND_, + ACTIONS(9118), 2, + sym__ws, + sym_comment, + STATE(2432), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8747), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(4420), 26, - ts_builtin_sym_end, + 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, + [144313] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9062), 1, + anon_sym_POUND_, + ACTIONS(9059), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9065), 25, + anon_sym_COLON, 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, - [130472] = 3, + 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, + [144356] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 26, - ts_builtin_sym_end, + ACTIONS(8679), 1, + anon_sym_POUND_, + ACTIONS(9121), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2122), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8682), 25, + anon_sym_COLON, 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, - [130516] = 3, + 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, + [144399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 26, - ts_builtin_sym_end, + ACTIONS(8744), 1, + anon_sym_POUND_, + ACTIONS(9124), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2424), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8747), 25, + anon_sym_COLON, 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, - [130560] = 3, + 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, + [144442] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 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(4444), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9127), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2439), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [130604] = 3, + 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, + [144485] = 5, 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, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, + 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, + [144528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 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(4452), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9130), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2447), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [130692] = 3, + 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, + [144571] = 5, 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, + ACTIONS(9084), 1, + anon_sym_POUND_, + ACTIONS(9081), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9087), 25, + anon_sym_COLON, 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, - [130736] = 3, + 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, + [144614] = 5, 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, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9133), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2454), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, - [130780] = 3, + 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, + [144657] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 26, - ts_builtin_sym_end, + ACTIONS(8842), 1, + anon_sym_POUND_, + ACTIONS(8839), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8845), 25, + anon_sym_COLON, 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, - [130824] = 3, + 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, + [144700] = 5, 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, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9136), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2458), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, - [130868] = 3, + 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, + [144743] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 26, - ts_builtin_sym_end, + ACTIONS(9084), 1, + anon_sym_POUND_, + ACTIONS(9081), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9087), 25, + anon_sym_COLON, 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, - [130912] = 3, + 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, + [144786] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 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(4484), 26, - ts_builtin_sym_end, + ACTIONS(9142), 1, + anon_sym_POUND_, + ACTIONS(9139), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9145), 25, + anon_sym_COLON, 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, + 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, + [144829] = 5, 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, + ACTIONS(9092), 1, + anon_sym_POUND_, + ACTIONS(9147), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2462), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9095), 25, + anon_sym_COLON, 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, + 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, + [144872] = 5, 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, + ACTIONS(9153), 1, + anon_sym_POUND_, + ACTIONS(9150), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2069), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9156), 25, + anon_sym_COLON, 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, - [131044] = 3, + 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, + [144915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 26, - ts_builtin_sym_end, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9158), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2472), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [131088] = 3, + 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, + [144958] = 5, 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, + ACTIONS(9073), 1, + anon_sym_POUND_, + ACTIONS(9161), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2475), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9076), 25, + anon_sym_COLON, 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, - [131132] = 3, + 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, + [145001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 26, - ts_builtin_sym_end, + ACTIONS(9035), 1, + anon_sym_POUND_, + ACTIONS(9032), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9038), 25, + anon_sym_COLON, 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, - [131176] = 3, + 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, + [145044] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 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(4416), 26, - ts_builtin_sym_end, + ACTIONS(9167), 1, + anon_sym_POUND_, + ACTIONS(9164), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9170), 25, + anon_sym_COLON, 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, - [131220] = 3, + 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, + [145087] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 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(4504), 26, - ts_builtin_sym_end, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(9172), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2477), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, - [131264] = 3, + 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, + [145130] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 26, - ts_builtin_sym_end, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(9180), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2422), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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, - [131308] = 3, + 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, + [145173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 26, - ts_builtin_sym_end, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(9183), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2481), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, - [131352] = 3, + 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, + [145216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 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(4424), 26, - ts_builtin_sym_end, + ACTIONS(9167), 1, + anon_sym_POUND_, + ACTIONS(9164), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9170), 25, + anon_sym_COLON, 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, - [131396] = 3, + 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, + [145259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 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(4400), 26, - ts_builtin_sym_end, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(9186), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2485), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, - [131440] = 3, + 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, + [145302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 26, - ts_builtin_sym_end, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, 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, - [131484] = 3, + 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, + [145345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 26, - ts_builtin_sym_end, + ACTIONS(9200), 1, + anon_sym_POUND_, + ACTIONS(9197), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2486), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, - [131528] = 3, + 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, + [145388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 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(4424), 26, - ts_builtin_sym_end, + ACTIONS(9200), 1, + anon_sym_POUND_, + ACTIONS(9205), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2487), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, - [131572] = 6, + 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, + [145431] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5112), 1, + ACTIONS(9192), 1, anon_sym_POUND_, - ACTIONS(5109), 2, + ACTIONS(9189), 2, sym__ws, sym_comment, - STATE(1569), 3, + STATE(2145), 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, + ACTIONS(9195), 25, 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(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, - [131621] = 4, + 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, + [145474] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5115), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 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(4134), 22, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(9208), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2488), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, - [131665] = 3, + 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, + [145517] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5119), 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(5117), 24, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, 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, - [131707] = 3, + 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, + [145560] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 22, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(9224), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2491), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, - [131748] = 3, + 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, + [145603] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4180), 30, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [145646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 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, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(9227), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2493), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, - [131830] = 3, + 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, + [145689] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 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(4228), 22, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(9230), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2494), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, - [131871] = 3, + 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, + [145732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 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, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, 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, - [131912] = 3, + 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, + [145775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5127), 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(5125), 23, + ACTIONS(9200), 1, + anon_sym_POUND_, + ACTIONS(9233), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2495), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, - [131953] = 3, + 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, + [145818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 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(4276), 22, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, 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, - [131994] = 3, + 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, + [145861] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 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(4296), 22, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, 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, - [132035] = 3, + 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, + [145904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 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(4300), 22, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, - [132076] = 3, + 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, + [145947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 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(4300), 22, + ACTIONS(9247), 1, + anon_sym_POUND_, + ACTIONS(9244), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9250), 25, + anon_sym_COLON, 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, - [132117] = 3, + 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, + [145990] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 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(4304), 22, + ACTIONS(9255), 1, + anon_sym_POUND_, + ACTIONS(9252), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9258), 25, + anon_sym_COLON, 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, - [132158] = 3, + 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, + [146033] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 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(4308), 22, + ACTIONS(9263), 1, + anon_sym_POUND_, + ACTIONS(9260), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2113), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9266), 25, + anon_sym_COLON, 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, - [132199] = 3, + 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, + [146076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 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(4312), 22, + ACTIONS(8701), 1, + anon_sym_POUND_, + ACTIONS(8698), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8704), 25, + anon_sym_COLON, 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, - [132240] = 3, + 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, + [146119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 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(4316), 22, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(9268), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2099), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, - [132281] = 3, + 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, + [146162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5127), 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(5125), 23, + ACTIONS(9247), 1, + anon_sym_POUND_, + ACTIONS(9244), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9250), 25, + anon_sym_COLON, 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, - [132322] = 3, + 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, + [146205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 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(4312), 22, + ACTIONS(9279), 1, + anon_sym_POUND_, + ACTIONS(9276), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9282), 25, + anon_sym_COLON, 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, - [132363] = 3, + 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, + [146248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 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(4316), 22, + ACTIONS(9287), 1, + anon_sym_POUND_, + ACTIONS(9284), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9290), 25, + anon_sym_COLON, 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, - [132404] = 3, + 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, + [146291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5127), 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(5125), 23, + ACTIONS(9295), 1, + anon_sym_POUND_, + ACTIONS(9292), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9298), 25, + anon_sym_COLON, 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, - [132445] = 3, + 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, + [146334] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 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(4328), 22, + ACTIONS(9279), 1, + anon_sym_POUND_, + ACTIONS(9276), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9282), 25, + anon_sym_COLON, 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, - [132486] = 3, + 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, + [146377] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 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(4332), 22, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, - [132527] = 3, + 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, + [146420] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 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(4344), 22, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(9300), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2098), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, - [132568] = 3, + 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, + [146463] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 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(4348), 22, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(9303), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2097), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, - [132609] = 3, + 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, + [146506] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 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(4352), 22, + ACTIONS(9309), 1, + anon_sym_POUND_, + ACTIONS(9306), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, - [132650] = 3, + 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, + [146549] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 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(4360), 22, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, - [132691] = 3, + 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, + [146592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 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(4360), 22, + ACTIONS(9309), 1, + anon_sym_POUND_, + ACTIONS(9306), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, - [132732] = 3, + 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, + [146635] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 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(4372), 22, + ACTIONS(9309), 1, + anon_sym_POUND_, + ACTIONS(9306), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, - [132773] = 3, + 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, + [146678] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 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(4372), 22, + ACTIONS(9317), 1, + anon_sym_POUND_, + ACTIONS(9314), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2483), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9320), 25, + anon_sym_COLON, 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, - [132814] = 3, + 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, + [146721] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 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(4384), 22, + ACTIONS(9325), 1, + anon_sym_POUND_, + ACTIONS(9322), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2095), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9328), 25, + anon_sym_COLON, 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, - [132855] = 3, + 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, + [146764] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 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(4392), 22, + ACTIONS(9333), 1, + anon_sym_POUND_, + ACTIONS(9330), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9336), 25, + anon_sym_COLON, 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, - [132896] = 3, + 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, + [146807] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 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(4396), 22, + ACTIONS(9341), 1, + anon_sym_POUND_, + ACTIONS(9338), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9344), 25, + anon_sym_COLON, 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, - [132937] = 3, + 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, + [146850] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 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(4404), 22, + ACTIONS(9317), 1, + anon_sym_POUND_, + ACTIONS(9346), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2509), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9320), 25, + anon_sym_COLON, 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, - [132978] = 3, + 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, + [146893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 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(4140), 22, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(9349), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2094), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, - [133019] = 3, + 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, + [146936] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 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(4416), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9357), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2506), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [133060] = 3, + 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, + [146979] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 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(4420), 22, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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, - [133101] = 3, + 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, + [147022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9373), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2521), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [133142] = 3, + 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, + [147065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 22, + ACTIONS(9379), 1, + anon_sym_POUND_, + ACTIONS(9376), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9382), 25, + anon_sym_COLON, 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, - [133183] = 3, + 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, + [147108] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 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(4416), 22, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9384), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2526), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [133224] = 3, + 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, + [147151] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 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(4420), 22, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(9392), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2093), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, - [133265] = 3, + 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, + [147194] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 22, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9395), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2533), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [133306] = 3, + 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, + [147237] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 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(4432), 22, + ACTIONS(9379), 1, + anon_sym_POUND_, + ACTIONS(9376), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9382), 25, + anon_sym_COLON, 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, - [133347] = 3, + 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, + [147280] = 5, 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, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9398), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2540), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [133388] = 3, + 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, + [147323] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 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(4448), 22, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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, - [133429] = 3, + 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, + [147366] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 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(4452), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9401), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2547), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [133470] = 3, + 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, + [147409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 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(4456), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9404), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2549), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [133511] = 3, + 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, + [147452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 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(4460), 22, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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, - [133552] = 3, + 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, + [147495] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 22, + ACTIONS(9410), 1, + anon_sym_POUND_, + ACTIONS(9407), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9413), 25, + anon_sym_COLON, 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, - [133593] = 3, + 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, + [147538] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 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(4460), 22, + ACTIONS(9418), 1, + anon_sym_POUND_, + ACTIONS(9415), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2479), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9421), 25, + anon_sym_COLON, 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, - [133634] = 3, + 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, + [147581] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5127), 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(5125), 23, + ACTIONS(9426), 1, + anon_sym_POUND_, + ACTIONS(9423), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2104), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9429), 25, + anon_sym_COLON, 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, - [133675] = 3, + 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, + [147624] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 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(4484), 22, + ACTIONS(9418), 1, + anon_sym_POUND_, + ACTIONS(9431), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2473), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9421), 25, + anon_sym_COLON, 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, - [133716] = 3, + 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, + [147667] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 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(4456), 22, + ACTIONS(9410), 1, + anon_sym_POUND_, + ACTIONS(9407), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9413), 25, + anon_sym_COLON, 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, - [133757] = 3, + 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, + [147710] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 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(4460), 22, + ACTIONS(9418), 1, + anon_sym_POUND_, + ACTIONS(9434), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2517), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9421), 25, + anon_sym_COLON, 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, - [133798] = 3, + 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, + [147753] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 22, + ACTIONS(9440), 1, + anon_sym_POUND_, + ACTIONS(9437), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9443), 25, + anon_sym_COLON, 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, - [133839] = 3, + 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, + [147796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 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(4460), 22, + ACTIONS(9448), 1, + anon_sym_POUND_, + ACTIONS(9445), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2434), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9451), 25, + anon_sym_COLON, 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, - [133880] = 3, + 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, + [147839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 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(4476), 22, + ACTIONS(9448), 1, + anon_sym_POUND_, + ACTIONS(9453), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2431), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9451), 25, + anon_sym_COLON, 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, - [133921] = 3, + 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, + [147882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 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(4484), 22, + ACTIONS(9440), 1, + anon_sym_POUND_, + ACTIONS(9437), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9443), 25, + anon_sym_COLON, 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, - [133962] = 3, + 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, + [147925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 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(4504), 22, + ACTIONS(9459), 1, + anon_sym_POUND_, + ACTIONS(9456), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2427), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9462), 25, + anon_sym_COLON, 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, - [134003] = 3, + 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, + [147968] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 22, + ACTIONS(9467), 1, + anon_sym_POUND_, + ACTIONS(9464), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9470), 25, + anon_sym_COLON, 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, - [134044] = 3, + 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, + [148011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 22, + ACTIONS(9459), 1, + anon_sym_POUND_, + ACTIONS(9472), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2411), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9462), 25, + anon_sym_COLON, 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, - [134085] = 3, + 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, + [148054] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 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(4424), 22, + ACTIONS(9467), 1, + anon_sym_POUND_, + ACTIONS(9464), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9470), 25, + anon_sym_COLON, 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, - [134126] = 3, + 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, + [148097] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 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(4400), 22, + ACTIONS(9459), 1, + anon_sym_POUND_, + ACTIONS(9475), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2331), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9462), 25, + anon_sym_COLON, 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, - [134167] = 3, + 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, + [148140] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 22, + ACTIONS(9459), 1, + anon_sym_POUND_, + ACTIONS(9478), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2202), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9462), 25, + anon_sym_COLON, 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, - [134208] = 3, + 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, + [148183] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 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(4508), 22, + ACTIONS(9467), 1, + anon_sym_POUND_, + ACTIONS(9464), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9470), 25, + anon_sym_COLON, 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, - [134249] = 3, + 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, + [148226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 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(4424), 22, + ACTIONS(9448), 1, + anon_sym_POUND_, + ACTIONS(9481), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2201), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9451), 25, + anon_sym_COLON, 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, - [134290] = 3, + 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, + [148269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 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(4400), 22, + ACTIONS(9440), 1, + anon_sym_POUND_, + ACTIONS(9437), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9443), 25, + anon_sym_COLON, 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, - [134331] = 3, + 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, + [148312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 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(4292), 22, + ACTIONS(9440), 1, + anon_sym_POUND_, + ACTIONS(9437), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9443), 25, + anon_sym_COLON, 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, - [134372] = 3, + 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, + [148355] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 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(4292), 22, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(9484), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2418), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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, - [134413] = 3, + 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, + [148398] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 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(5129), 23, + ACTIONS(9333), 1, + anon_sym_POUND_, + ACTIONS(9330), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9336), 25, + anon_sym_COLON, 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, - [134454] = 3, + 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, + [148441] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 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(5129), 23, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(9487), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2091), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, - [134495] = 3, + 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, + [148484] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 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(5129), 23, + ACTIONS(9142), 1, + anon_sym_POUND_, + ACTIONS(9139), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9145), 25, + anon_sym_COLON, 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, - [134536] = 3, + 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, + [148527] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 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(5129), 23, + ACTIONS(9493), 1, + anon_sym_POUND_, + ACTIONS(9490), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2082), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9496), 25, + anon_sym_COLON, 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, - [134577] = 3, + 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, + [148570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5135), 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(5133), 23, + ACTIONS(9501), 1, + anon_sym_POUND_, + ACTIONS(9498), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9504), 25, + anon_sym_COLON, 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, - [134618] = 3, + 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, + [148613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5135), 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(5133), 23, + ACTIONS(9509), 1, + anon_sym_POUND_, + ACTIONS(9506), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2137), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9512), 25, + anon_sym_COLON, 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, - [134659] = 3, + 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, + [148656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 22, + ACTIONS(9517), 1, + anon_sym_POUND_, + ACTIONS(9514), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2101), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9520), 25, + anon_sym_COLON, 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, - [134700] = 3, + 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, + [148699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 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(4368), 22, + ACTIONS(9525), 1, + anon_sym_POUND_, + ACTIONS(9522), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2220), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9528), 25, + anon_sym_COLON, 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, - [134741] = 3, + 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, + [148742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 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(4288), 22, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9530), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2141), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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, - [134782] = 3, + 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, + [148785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 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(4284), 22, + ACTIONS(9333), 1, + anon_sym_POUND_, + ACTIONS(9330), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9336), 25, + anon_sym_COLON, 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, - [134823] = 3, + 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, + [148828] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 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(4272), 22, + ACTIONS(9541), 1, + anon_sym_POUND_, + ACTIONS(9538), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2143), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9544), 25, + anon_sym_COLON, 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, - [134864] = 3, + 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, + [148871] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 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(4268), 22, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(9546), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2087), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, - [134905] = 3, + 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, + [148914] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5139), 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(5137), 23, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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, - [134946] = 3, + 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, + [148957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5139), 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(5137), 23, + ACTIONS(9560), 1, + anon_sym_POUND_, + ACTIONS(9557), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9563), 25, + anon_sym_COLON, 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, - [134987] = 3, + 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, + [149000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5139), 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(5137), 23, + ACTIONS(9541), 1, + anon_sym_POUND_, + ACTIONS(9565), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2147), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9544), 25, + anon_sym_COLON, 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, - [135028] = 3, + 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, + [149043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5139), 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(5137), 23, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, + anon_sym_COLON, 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, - [135069] = 3, + 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, + [149086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5143), 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(5141), 23, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9568), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2149), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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, - [135110] = 3, + 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, + [149129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5143), 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(5141), 23, + ACTIONS(9574), 1, + anon_sym_POUND_, + ACTIONS(9571), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9577), 25, + anon_sym_COLON, 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, - [135151] = 3, + 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, + [149172] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5143), 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(5141), 23, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9579), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2152), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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, - [135192] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5143), 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(5141), 23, + 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, + [149215] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(9582), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2399), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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, - [135233] = 3, + 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, + [149258] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 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(5145), 23, + ACTIONS(9509), 1, + anon_sym_POUND_, + ACTIONS(9590), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2156), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9512), 25, + anon_sym_COLON, 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, - [135274] = 3, + 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, + [149301] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 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(5145), 23, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, + anon_sym_COLON, 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, - [135315] = 3, + 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, + [149344] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 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(4264), 22, + ACTIONS(8880), 1, + anon_sym_POUND_, + ACTIONS(8877), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8883), 25, + anon_sym_COLON, 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, - [135356] = 3, + 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, + [149387] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4292), 30, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9593), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2160), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135397] = 3, + 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, + [149430] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4292), 30, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(9596), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2398), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135438] = 3, + 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, + [149473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4400), 30, + ACTIONS(9541), 1, + anon_sym_POUND_, + ACTIONS(9599), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2162), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9544), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135479] = 3, + 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, + [149516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4424), 30, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135520] = 3, + 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, + [149559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4508), 30, + ACTIONS(8872), 1, + anon_sym_POUND_, + ACTIONS(9602), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2086), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8875), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135561] = 3, + 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, + [149602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4508), 30, + ACTIONS(9560), 1, + anon_sym_POUND_, + ACTIONS(9557), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9563), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135602] = 3, + 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, + [149645] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4400), 30, + ACTIONS(9541), 1, + anon_sym_POUND_, + ACTIONS(9605), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2166), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9544), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135643] = 3, + 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, + [149688] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4424), 30, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(9608), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2396), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135684] = 3, + 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, + [149731] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4508), 30, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9616), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2132), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135725] = 3, + 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, + [149774] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4508), 30, + ACTIONS(9574), 1, + anon_sym_POUND_, + ACTIONS(9571), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9577), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135766] = 3, + 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, + [149817] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4504), 30, + ACTIONS(9533), 1, + anon_sym_POUND_, + ACTIONS(9619), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2172), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9536), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135807] = 3, + 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, + [149860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4484), 30, + ACTIONS(9317), 1, + anon_sym_POUND_, + ACTIONS(9622), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2173), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9320), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135848] = 3, + 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, + [149903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4476), 30, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(9625), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2407), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135889] = 3, + 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, + [149946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(8864), 1, + anon_sym_POUND_, + ACTIONS(8861), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8867), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135930] = 3, + 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, + [149989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4476), 30, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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_RPAREN, 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, - [135971] = 3, + 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, + [150032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(9341), 1, + anon_sym_POUND_, + ACTIONS(9338), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9344), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136012] = 3, + 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, + [150075] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4456), 30, + ACTIONS(9317), 1, + anon_sym_POUND_, + ACTIONS(9628), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2177), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9320), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136053] = 3, + 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, + [150118] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4484), 30, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136094] = 3, + 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, + [150161] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4476), 30, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9631), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2179), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136135] = 3, + 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, + [150204] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136176] = 3, + 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, + [150247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4476), 30, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9634), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2182), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136217] = 5, + 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, + [150290] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9379), 1, + anon_sym_POUND_, + ACTIONS(9376), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9382), 25, + anon_sym_COLON, 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, - [136262] = 5, + 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, + [150333] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9637), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2184), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [136307] = 3, + 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, + [150376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4460), 30, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136348] = 5, + 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, + [150419] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9640), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2186), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [136393] = 5, + 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, + [150462] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9379), 1, + anon_sym_POUND_, + ACTIONS(9376), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9382), 25, + anon_sym_COLON, 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, - [136438] = 5, + 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, + [150505] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9387), 1, + anon_sym_POUND_, + ACTIONS(9643), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2189), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9390), 25, + anon_sym_COLON, 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, - [136483] = 3, + 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, + [150548] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4456), 30, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136524] = 5, + 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, + [150591] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9646), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2191), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [136569] = 5, + 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, + [150634] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9360), 1, + anon_sym_POUND_, + ACTIONS(9649), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2192), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9363), 25, + anon_sym_COLON, 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, - [136614] = 5, + 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, + [150677] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9368), 1, + anon_sym_POUND_, + ACTIONS(9365), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9371), 25, + anon_sym_COLON, 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, - [136659] = 3, + 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, + [150720] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5167), 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(5165), 23, - ts_builtin_sym_end, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(9652), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2085), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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, - [136700] = 3, + 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, + [150763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4452), 30, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136741] = 5, + 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, + [150806] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9658), 1, + anon_sym_POUND_, + ACTIONS(9655), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2463), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9661), 25, + anon_sym_COLON, 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, - [136786] = 3, + 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, + [150849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4448), 30, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(9663), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2084), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136827] = 3, + 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, + [150892] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4444), 30, + ACTIONS(9279), 1, + anon_sym_POUND_, + ACTIONS(9276), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9282), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136868] = 3, + 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, + [150935] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4432), 30, + ACTIONS(9658), 1, + anon_sym_POUND_, + ACTIONS(9666), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2465), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9661), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136909] = 3, + 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, + [150978] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4432), 30, + ACTIONS(8850), 1, + anon_sym_POUND_, + ACTIONS(9669), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2083), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8853), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136950] = 3, + 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, + [151021] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4420), 30, + ACTIONS(9658), 1, + anon_sym_POUND_, + ACTIONS(9672), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2466), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9661), 25, + anon_sym_COLON, 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_RPAREN, 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, - [136991] = 3, + 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, + [151064] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4416), 30, + ACTIONS(9678), 1, + anon_sym_POUND_, + ACTIONS(9675), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2121), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9681), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137032] = 3, + 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, + [151107] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4432), 30, + ACTIONS(9279), 1, + anon_sym_POUND_, + ACTIONS(9276), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9282), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137073] = 3, + 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, + [151150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4432), 30, + ACTIONS(9517), 1, + anon_sym_POUND_, + ACTIONS(9683), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2102), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9520), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137114] = 3, + 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, + [151193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4420), 30, + ACTIONS(8834), 1, + anon_sym_POUND_, + ACTIONS(8831), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8837), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137155] = 3, + 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, + [151236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4416), 30, + ACTIONS(9689), 1, + anon_sym_POUND_, + ACTIONS(9686), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9692), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137196] = 3, + 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, + [151279] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4140), 30, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137237] = 3, + 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, + [151322] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4404), 30, + ACTIONS(9247), 1, + anon_sym_POUND_, + ACTIONS(9244), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9250), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137278] = 5, + 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, + [151365] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(4500), 22, + ACTIONS(9705), 1, + anon_sym_POUND_, + ACTIONS(9702), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2468), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9708), 25, + anon_sym_COLON, 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, - [137323] = 3, + 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, + [151408] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4396), 30, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137364] = 3, + 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, + [151451] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4392), 30, + ACTIONS(9721), 1, + anon_sym_POUND_, + ACTIONS(9718), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9724), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137405] = 3, + 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, + [151494] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 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(5145), 23, + ACTIONS(9729), 1, + anon_sym_POUND_, + ACTIONS(9726), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2469), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9732), 25, + anon_sym_COLON, 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, - [137446] = 3, + 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, + [151537] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4372), 30, + ACTIONS(9729), 1, + anon_sym_POUND_, + ACTIONS(9734), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2484), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9732), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137487] = 3, + 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, + [151580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4372), 30, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137528] = 3, + 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, + [151623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4360), 30, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9737), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2078), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137569] = 3, + 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, + [151666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4360), 30, + ACTIONS(9721), 1, + anon_sym_POUND_, + ACTIONS(9718), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9724), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137610] = 3, + 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, + [151709] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4354), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4352), 30, + ACTIONS(9729), 1, + anon_sym_POUND_, + ACTIONS(9745), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2131), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9732), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137651] = 3, + 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, + [151752] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4348), 30, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137692] = 3, + 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, + [151795] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4344), 30, + ACTIONS(9678), 1, + anon_sym_POUND_, + ACTIONS(9748), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2125), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9681), 25, + anon_sym_COLON, 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_RPAREN, 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, - [137733] = 3, + 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, + [151838] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5147), 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(5145), 23, + ACTIONS(9295), 1, + anon_sym_POUND_, + ACTIONS(9292), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9298), 25, + anon_sym_COLON, 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, - [137774] = 3, + 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, + [151881] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 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(4260), 22, + ACTIONS(9255), 1, + anon_sym_POUND_, + ACTIONS(9252), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9258), 25, + anon_sym_COLON, 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, - [137815] = 3, + 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, + [151924] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 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(4256), 22, + ACTIONS(9721), 1, + anon_sym_POUND_, + ACTIONS(9718), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9724), 25, + anon_sym_COLON, 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, - [137856] = 3, + 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, + [151967] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4316), 30, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9751), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2077), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4312), 30, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9754), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2076), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152053] = 5, 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, + ACTIONS(9501), 1, + anon_sym_POUND_, + ACTIONS(9498), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9504), 25, + anon_sym_COLON, 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, + 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, + [152096] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4316), 30, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152139] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4312), 30, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152182] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4308), 30, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(9765), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2389), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152225] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4304), 30, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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_RPAREN, 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, - [138143] = 3, + 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, + [152268] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4248), 22, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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, + 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, + [152311] = 5, 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_EQ, - ACTIONS(4236), 22, + ACTIONS(9771), 1, + anon_sym_POUND_, + ACTIONS(9768), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2214), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9774), 25, + anon_sym_COLON, 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, - [138225] = 12, + 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, + [152354] = 5, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(9779), 1, + anon_sym_POUND_, + ACTIONS(9776), 2, + sym__ws, + sym_comment, + STATE(2074), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9782), 25, 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, + 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, + [152397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 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(4232), 22, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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, - [138325] = 3, + 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, + [152440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 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(4224), 22, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9792), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2218), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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, - [138366] = 3, + 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, + [152483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 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(4220), 22, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9800), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2073), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [138407] = 3, + 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, + [152526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5175), 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(5173), 23, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9808), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2072), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [138448] = 3, + 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, + [152569] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 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(4512), 22, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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, - [138489] = 3, + 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, + [152612] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 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(4240), 22, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(9811), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2386), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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, - [138530] = 3, + 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, + [152655] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 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(4228), 22, + ACTIONS(9817), 1, + anon_sym_POUND_, + ACTIONS(9814), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9820), 25, + anon_sym_COLON, 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, - [138571] = 3, + 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, + [152698] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 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(4324), 22, + ACTIONS(9525), 1, + anon_sym_POUND_, + ACTIONS(9822), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2224), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9528), 25, + anon_sym_COLON, 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, - [138612] = 3, + 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, + [152741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4228), 30, + ACTIONS(9517), 1, + anon_sym_POUND_, + ACTIONS(9825), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2103), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9520), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152784] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 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(4208), 22, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9828), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2226), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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, - [138694] = 3, + 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, + [152827] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4228), 30, + ACTIONS(9834), 1, + anon_sym_POUND_, + ACTIONS(9831), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9837), 25, + anon_sym_COLON, 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_RPAREN, 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, - [138735] = 3, + 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, + [152870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4240), 30, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9839), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2229), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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_RPAREN, 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, - [138776] = 3, + 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, + [152913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4204), 30, + ACTIONS(9845), 1, + anon_sym_POUND_, + ACTIONS(9842), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2230), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9848), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [152956] = 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, - 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(4500), 21, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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, + 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, + [152999] = 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, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9850), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2068), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [138907] = 3, + 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, + [153042] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 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(4492), 22, + ACTIONS(9856), 1, + anon_sym_POUND_, + ACTIONS(9853), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9859), 25, + anon_sym_COLON, 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, - [138948] = 3, + 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, + [153085] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 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(4488), 22, + ACTIONS(9845), 1, + anon_sym_POUND_, + ACTIONS(9861), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2234), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9848), 25, + anon_sym_COLON, 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, - [138989] = 3, + 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, + [153128] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 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(4480), 22, + ACTIONS(9501), 1, + anon_sym_POUND_, + ACTIONS(9498), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9504), 25, + anon_sym_COLON, 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, - [139030] = 3, + 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, + [153171] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4164), 30, + ACTIONS(9867), 1, + anon_sym_POUND_, + ACTIONS(9864), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9870), 25, + anon_sym_COLON, 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_RPAREN, 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, + 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, + [153214] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 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(4464), 22, + ACTIONS(9875), 1, + anon_sym_POUND_, + ACTIONS(9872), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9878), 25, + anon_sym_COLON, 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, - [139112] = 3, + 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, + [153257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 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(4472), 22, + ACTIONS(9867), 1, + anon_sym_POUND_, + ACTIONS(9880), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2239), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9870), 25, + anon_sym_COLON, 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, - [139153] = 5, + 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, + [153300] = 5, ACTIONS(47), 1, sym_block_comment, - 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, - 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(4464), 21, + ACTIONS(9886), 1, + anon_sym_POUND_, + ACTIONS(9883), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9889), 25, + anon_sym_COLON, 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, - [139198] = 3, + 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, + [153343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 22, + ACTIONS(9894), 1, + anon_sym_POUND_, + ACTIONS(9891), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2241), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9897), 25, + anon_sym_COLON, 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, - [139239] = 3, + 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, + [153386] = 5, 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, + ACTIONS(9501), 1, + anon_sym_POUND_, + ACTIONS(9498), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9504), 25, + anon_sym_COLON, 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, - [139280] = 3, + 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, + [153429] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 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(4212), 22, + ACTIONS(9894), 1, + anon_sym_POUND_, + ACTIONS(9899), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2243), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9897), 25, + anon_sym_COLON, 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, - [139321] = 3, + 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, + [153472] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 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, + ACTIONS(9886), 1, + anon_sym_POUND_, + ACTIONS(9883), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9889), 25, + anon_sym_COLON, 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, - [139362] = 3, + 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, + [153515] = 5, 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, + ACTIONS(9894), 1, + anon_sym_POUND_, + ACTIONS(9902), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2246), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9897), 25, + anon_sym_COLON, 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, - [139403] = 3, + 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, + [153558] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5123), 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, + ACTIONS(9875), 1, + anon_sym_POUND_, + ACTIONS(9872), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9878), 25, + anon_sym_COLON, 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, - [139444] = 3, + 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, + [153601] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4196), 30, + ACTIONS(9867), 1, + anon_sym_POUND_, + ACTIONS(9905), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2248), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9870), 25, + anon_sym_COLON, 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_RPAREN, 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, - [139485] = 3, + 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, + [153644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 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(4204), 22, + ACTIONS(9867), 1, + anon_sym_POUND_, + ACTIONS(9908), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2249), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9870), 25, + anon_sym_COLON, 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, - [139526] = 3, + 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, + [153687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 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(4164), 22, + ACTIONS(9875), 1, + anon_sym_POUND_, + ACTIONS(9872), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9878), 25, + anon_sym_COLON, 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, - [139567] = 3, + 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, + [153730] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 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(4180), 22, + ACTIONS(9729), 1, + anon_sym_POUND_, + ACTIONS(9911), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2067), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9732), 25, + anon_sym_COLON, 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, - [139608] = 3, + 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, + [153773] = 5, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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, + 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, + [153816] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4200), 30, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(9914), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2384), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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_RPAREN, 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, - [139690] = 3, + 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, + [153859] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 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(4196), 22, + ACTIONS(9920), 1, + anon_sym_POUND_, + ACTIONS(9917), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2264), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9923), 25, + anon_sym_COLON, 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, - [139731] = 3, + 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, + [153902] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 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(4200), 22, + ACTIONS(9928), 1, + anon_sym_POUND_, + ACTIONS(9925), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2126), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9931), 25, + anon_sym_COLON, 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, - [139772] = 3, + 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, + [153945] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4518), 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(4516), 22, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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, - [139813] = 3, + 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, + [153988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 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(4148), 22, + ACTIONS(9936), 1, + anon_sym_POUND_, + ACTIONS(9933), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2268), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9939), 25, + anon_sym_COLON, 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, - [139854] = 3, + 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, + [154031] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 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(4428), 22, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9941), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2062), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [139895] = 3, + 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, + [154074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5183), 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(5181), 23, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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, - [139936] = 3, + 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, + [154117] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4412), 22, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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, - [139977] = 3, + 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, + [154160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5187), 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(5185), 23, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(9944), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2383), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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, - [140018] = 3, + 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, + [154203] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5187), 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(5185), 23, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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, - [140059] = 3, + 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, + [154246] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 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(4408), 22, + ACTIONS(9920), 1, + anon_sym_POUND_, + ACTIONS(9947), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2279), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9923), 25, + anon_sym_COLON, 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, - [140100] = 3, + 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, + [154289] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 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(4144), 22, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9950), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2061), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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, - [140141] = 3, + 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, + [154332] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 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(4388), 22, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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, - [140182] = 3, + 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, + [154375] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 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(4380), 22, + ACTIONS(9936), 1, + anon_sym_POUND_, + ACTIONS(9953), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2283), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9939), 25, + anon_sym_COLON, 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, - [140223] = 3, + 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, + [154418] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4376), 22, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9956), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2060), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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, - [140264] = 3, + 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, + [154461] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4244), 22, + ACTIONS(9771), 1, + anon_sym_POUND_, + ACTIONS(9959), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2289), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9774), 25, + anon_sym_COLON, 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, - [140305] = 3, + 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, + [154504] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4364), 22, + ACTIONS(9740), 1, + anon_sym_POUND_, + ACTIONS(9962), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2058), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9743), 25, + anon_sym_COLON, 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, - [140346] = 3, + 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, + [154547] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4280), 22, + ACTIONS(9968), 1, + anon_sym_POUND_, + ACTIONS(9965), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9971), 25, + anon_sym_COLON, 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, - [140387] = 3, + 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, + [154590] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4356), 22, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9973), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2293), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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, - [140428] = 3, + 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, + [154633] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4320), 22, + ACTIONS(9713), 1, + anon_sym_POUND_, + ACTIONS(9710), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9716), 25, + anon_sym_COLON, 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, - [140469] = 3, + 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, + [154676] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4340), 22, + ACTIONS(9525), 1, + anon_sym_POUND_, + ACTIONS(9976), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2295), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9528), 25, + anon_sym_COLON, 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, - [140510] = 3, + 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, + [154719] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4172), 30, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140551] = 3, + 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, + [154762] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4176), 30, + ACTIONS(9697), 1, + anon_sym_POUND_, + ACTIONS(9694), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9700), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140592] = 3, + 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, + [154805] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4154), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4152), 30, + ACTIONS(9817), 1, + anon_sym_POUND_, + ACTIONS(9814), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9820), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140633] = 3, + 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, + [154848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4168), 30, + ACTIONS(9525), 1, + anon_sym_POUND_, + ACTIONS(9979), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2299), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9528), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140674] = 3, + 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, + [154891] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4156), 22, + ACTIONS(9779), 1, + anon_sym_POUND_, + ACTIONS(9982), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2056), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9782), 25, + anon_sym_COLON, 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, - [140715] = 3, + 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, + [154934] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4160), 22, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9985), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2301), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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, - [140756] = 3, + 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, + [154977] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4172), 22, + ACTIONS(9834), 1, + anon_sym_POUND_, + ACTIONS(9831), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9837), 25, + anon_sym_COLON, 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, - [140797] = 3, + 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, + [155020] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4184), 30, + ACTIONS(9795), 1, + anon_sym_POUND_, + ACTIONS(9988), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2304), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9798), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140838] = 3, + 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, + [155063] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4176), 22, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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, - [140879] = 3, + 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, + [155106] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4188), 30, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140920] = 3, + 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, + [155149] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4208), 30, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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_RPAREN, 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, - [140961] = 3, + 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, + [155192] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4212), 30, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9991), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2055), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141002] = 3, + 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, + [155235] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4152), 22, + ACTIONS(9142), 1, + anon_sym_POUND_, + ACTIONS(9139), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9145), 25, + anon_sym_COLON, 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, - [141043] = 3, + 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, + [155278] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4336), 22, + ACTIONS(9295), 1, + anon_sym_POUND_, + ACTIONS(9292), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9298), 25, + anon_sym_COLON, 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, - [141084] = 3, + 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, + [155321] = 5, 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), 23, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(9994), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2054), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [141125] = 3, + 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, + [155364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4492), 30, + ACTIONS(9678), 1, + anon_sym_POUND_, + ACTIONS(9997), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2129), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9681), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141166] = 3, + 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, + [155407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4490), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4488), 30, + ACTIONS(9928), 1, + anon_sym_POUND_, + ACTIONS(10000), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2421), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9931), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141207] = 3, + 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, + [155450] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4220), 30, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(10003), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2376), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141248] = 3, + 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, + [155493] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4168), 22, + ACTIONS(9928), 1, + anon_sym_POUND_, + ACTIONS(10006), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2420), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9931), 25, + anon_sym_COLON, 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, - [141289] = 3, + 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, + [155536] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4464), 30, + ACTIONS(10012), 1, + anon_sym_POUND_, + ACTIONS(10009), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10015), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141330] = 3, + 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, + [155579] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4472), 30, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141371] = 3, + 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, + [155622] = 5, 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), 23, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(10017), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2052), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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, - [141412] = 3, + 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, + [155665] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4144), 30, + ACTIONS(9018), 1, + anon_sym_POUND_, + ACTIONS(9015), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9021), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141453] = 3, + 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, + [155708] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4440), 30, + ACTIONS(9018), 1, + anon_sym_POUND_, + ACTIONS(9015), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9021), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141494] = 3, + 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, + [155751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4224), 30, + ACTIONS(9787), 1, + anon_sym_POUND_, + ACTIONS(9784), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9790), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141535] = 3, + 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, + [155794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4232), 30, + ACTIONS(9803), 1, + anon_sym_POUND_, + ACTIONS(10020), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2197), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9806), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141576] = 3, + 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, + [155837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4236), 30, + ACTIONS(8961), 1, + anon_sym_POUND_, + ACTIONS(8958), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8964), 25, + anon_sym_COLON, 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, - [141617] = 3, + 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, + [155880] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4248), 30, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(10023), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2288), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141658] = 3, + 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, + [155923] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4144), 30, + ACTIONS(9142), 1, + anon_sym_POUND_, + ACTIONS(9139), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9145), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141699] = 3, + 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, + [155966] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4252), 30, + ACTIONS(9295), 1, + anon_sym_POUND_, + ACTIONS(9292), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9298), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141740] = 3, + 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, + [156009] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4380), 30, + ACTIONS(8826), 1, + anon_sym_POUND_, + ACTIONS(8823), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8829), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141781] = 3, + 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, + [156052] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4378), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4376), 30, + ACTIONS(10029), 1, + anon_sym_POUND_, + ACTIONS(10026), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2522), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10032), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141822] = 3, + 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, + [156095] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4184), 22, + ACTIONS(10037), 1, + anon_sym_POUND_, + ACTIONS(10034), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2535), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10040), 25, + anon_sym_COLON, 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, - [141863] = 3, + 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, + [156138] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4364), 30, + ACTIONS(9287), 1, + anon_sym_POUND_, + ACTIONS(9284), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9290), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141904] = 3, + 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, + [156181] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4188), 22, + ACTIONS(8961), 1, + anon_sym_POUND_, + ACTIONS(8958), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8964), 25, + anon_sym_COLON, 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, - [141945] = 3, + 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, + [156224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4356), 30, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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_RPAREN, 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, - [141986] = 3, + 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, + [156267] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(4192), 22, + ACTIONS(9287), 1, + anon_sym_POUND_, + ACTIONS(9284), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9290), 25, + anon_sym_COLON, 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, - [142027] = 3, + 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, + [156310] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4342), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4340), 30, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142068] = 3, + 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, + [156353] = 5, 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), 23, + ACTIONS(8758), 1, + anon_sym_POUND_, + ACTIONS(10042), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2344), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8761), 25, + anon_sym_COLON, 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, - [142109] = 3, + 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, + [156396] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4336), 30, + ACTIONS(10048), 1, + anon_sym_POUND_, + ACTIONS(10045), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2394), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10051), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142150] = 3, + 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, + [156439] = 5, 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), 23, + ACTIONS(8818), 1, + anon_sym_POUND_, + ACTIONS(8815), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8821), 25, + anon_sym_COLON, 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, - [142191] = 3, + 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, + [156482] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4324), 30, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142232] = 3, + 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, + [156525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5199), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(7742), 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(5197), 23, + ACTIONS(7740), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, 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_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [142273] = 3, + 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [156564] = 5, 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), 23, + ACTIONS(8687), 1, + anon_sym_POUND_, + ACTIONS(10053), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2164), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8690), 25, + anon_sym_COLON, 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, - [142314] = 3, + 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, + [156607] = 5, 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), 23, + ACTIONS(8799), 1, + anon_sym_POUND_, + ACTIONS(10056), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2079), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8802), 25, + anon_sym_COLON, 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, - [142355] = 3, + 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, + [156650] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5191), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(8791), 1, + anon_sym_POUND_, + ACTIONS(8788), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8794), 25, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - ACTIONS(5189), 23, + 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, + [156693] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(10059), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2341), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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, - [142396] = 3, + 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, + [156736] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4320), 30, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142437] = 3, + 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, + [156779] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4280), 30, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(10070), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2340), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142478] = 3, + 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, + [156822] = 5, 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), 23, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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, - [142519] = 3, + 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, + [156865] = 5, 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), 23, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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, - [142560] = 3, + 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, + [156908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4144), 30, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142601] = 3, + 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, + [156951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4368), 30, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(10073), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2338), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142642] = 3, + 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, + [156994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4288), 30, + ACTIONS(10079), 1, + anon_sym_POUND_, + ACTIONS(10076), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2108), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10082), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142683] = 3, + 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, + [157037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 3, - anon_sym_POUND, - anon_sym_POUND_QMARK, - anon_sym_being, - ACTIONS(4284), 30, + ACTIONS(9689), 1, + anon_sym_POUND_, + ACTIONS(9686), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9692), 25, + anon_sym_COLON, 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_RPAREN, 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, - [142724] = 3, + 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, + [157080] = 5, 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), 23, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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, - [142765] = 3, + 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, + [157123] = 5, 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), 23, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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, - [142806] = 3, + 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, + [157166] = 5, 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, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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, - [142846] = 3, + 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, + [157209] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5209), 22, + ACTIONS(10065), 1, + anon_sym_POUND_, + ACTIONS(10062), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10068), 25, + anon_sym_COLON, 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, - [142886] = 3, + 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, + [157252] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5213), 22, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(10084), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2329), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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, - [142926] = 3, + 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, + [157295] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5217), 22, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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, - [142966] = 3, + 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, + [157338] = 5, ACTIONS(47), 1, sym_block_comment, - 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5221), 22, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(10087), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2325), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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, - [143006] = 4, + 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, + [157381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5225), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(4500), 30, + ACTIONS(9611), 1, + anon_sym_POUND_, + ACTIONS(10090), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2321), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9614), 25, + anon_sym_COLON, 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, @@ -136301,65 +171976,66 @@ 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, - [143048] = 3, + [157424] = 5, 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_COMMA, - sym_fancy_literal, - anon_sym_cl, - ACTIONS(5229), 22, + ACTIONS(10079), 1, + anon_sym_POUND_, + ACTIONS(10093), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + STATE(2109), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10082), 25, + anon_sym_COLON, 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, - [143088] = 4, + 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, + [157467] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5225), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(4496), 30, + ACTIONS(9760), 1, + anon_sym_POUND_, + ACTIONS(9757), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9763), 25, + anon_sym_COLON, 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, @@ -136376,27 +172052,28 @@ 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, - [143130] = 3, + [157510] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 1, - anon_sym_COLON, - ACTIONS(4512), 31, + ACTIONS(10099), 1, + anon_sym_POUND_, + ACTIONS(10096), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON_COLON, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10102), 25, + anon_sym_COLON, 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, @@ -136413,28 +172090,28 @@ 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, - [143170] = 4, + [157553] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5225), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(4464), 30, + ACTIONS(10107), 1, + anon_sym_POUND_, + ACTIONS(10104), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2367), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10110), 25, + anon_sym_COLON, 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, @@ -136451,25 +172128,28 @@ 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, - [143212] = 2, + [157596] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 31, + ACTIONS(10099), 1, + anon_sym_POUND_, + ACTIONS(10096), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10102), 25, + anon_sym_COLON, 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, @@ -136486,25 +172166,28 @@ 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, - [143249] = 2, + [157639] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4408), 31, + ACTIONS(10099), 1, + anon_sym_POUND_, + ACTIONS(10096), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10102), 25, + anon_sym_COLON, 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, @@ -136521,25 +172204,28 @@ 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, - [143286] = 2, + [157682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 31, + ACTIONS(10115), 1, + anon_sym_POUND_, + ACTIONS(10112), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2116), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10118), 25, + anon_sym_COLON, 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, @@ -136556,25 +172242,28 @@ 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, - [143323] = 2, + [157725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4516), 31, + ACTIONS(10123), 1, + anon_sym_POUND_, + ACTIONS(10120), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10126), 25, + anon_sym_COLON, 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, @@ -136591,25 +172280,28 @@ 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, - [143360] = 2, + [157768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 31, + ACTIONS(8766), 1, + anon_sym_POUND_, + ACTIONS(8763), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8769), 25, + anon_sym_COLON, 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, @@ -136626,25 +172318,28 @@ 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, - [143397] = 2, + [157811] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 31, + ACTIONS(9585), 1, + anon_sym_POUND_, + ACTIONS(10128), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2318), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9588), 25, + anon_sym_COLON, 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, @@ -136661,25 +172356,28 @@ 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, - [143434] = 2, + [157854] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4480), 31, + ACTIONS(10107), 1, + anon_sym_POUND_, + ACTIONS(10131), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2361), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10110), 25, + anon_sym_COLON, 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, @@ -136696,25 +172394,28 @@ 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, - [143471] = 2, + [157897] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 31, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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, @@ -136731,25 +172432,28 @@ 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, - [143508] = 2, + [157940] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 31, + ACTIONS(10137), 1, + anon_sym_POUND_, + ACTIONS(10134), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10140), 25, + anon_sym_COLON, 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, @@ -136766,31 +172470,28 @@ 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, - [143545] = 7, + [157983] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5236), 1, + ACTIONS(10107), 1, anon_sym_POUND_, - ACTIONS(5241), 1, - anon_sym_cl, - ACTIONS(5244), 1, - anon_sym_into, - ACTIONS(5233), 2, + ACTIONS(10142), 2, sym__ws, sym_comment, - STATE(2463), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5239), 23, + ACTIONS(10110), 25, + anon_sym_COLON, 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, @@ -136810,21 +172511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143592] = 2, + [158026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 31, + ACTIONS(9552), 1, + anon_sym_POUND_, + ACTIONS(9549), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9555), 25, + anon_sym_COLON, 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, @@ -136841,25 +172546,28 @@ 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, - [143629] = 2, + [158069] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 31, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(10145), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2316), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, @@ -136876,31 +172584,28 @@ 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, - [143666] = 7, + [158112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5249), 1, + ACTIONS(9333), 1, anon_sym_POUND_, - ACTIONS(5254), 1, - anon_sym_cl, - ACTIONS(5257), 1, - anon_sym_into, - ACTIONS(5246), 2, + ACTIONS(9330), 2, sym__ws, sym_comment, - STATE(2777), 3, + STATE(2145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5252), 23, + ACTIONS(9336), 25, + anon_sym_COLON, 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, @@ -136920,21 +172625,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [143713] = 2, + [158155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 31, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(10148), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2306), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, @@ -136951,25 +172660,28 @@ 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, - [143750] = 2, + [158198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4148), 31, + ACTIONS(10137), 1, + anon_sym_POUND_, + ACTIONS(10134), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10140), 25, + anon_sym_COLON, 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, @@ -136986,25 +172698,28 @@ 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, - [143787] = 2, + [158241] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 31, + ACTIONS(10107), 1, + anon_sym_POUND_, + ACTIONS(10151), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2255), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10110), 25, + anon_sym_COLON, 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, @@ -137021,25 +172736,28 @@ 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, - [143824] = 2, + [158284] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 31, + ACTIONS(9333), 1, + anon_sym_POUND_, + ACTIONS(9330), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9336), 25, + anon_sym_COLON, 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, @@ -137056,25 +172774,28 @@ 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, - [143861] = 2, + [158327] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4384), 31, + ACTIONS(9352), 1, + anon_sym_POUND_, + ACTIONS(10154), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2291), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9355), 25, + anon_sym_COLON, 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, @@ -137091,24 +172812,28 @@ 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, - [143898] = 2, + [158370] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 30, + ACTIONS(9167), 1, + anon_sym_POUND_, + ACTIONS(9164), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9170), 25, + anon_sym_COLON, 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, @@ -137125,24 +172850,28 @@ 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, - [143934] = 2, + [158413] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 30, + ACTIONS(8766), 1, + anon_sym_POUND_, + ACTIONS(8763), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(8769), 25, + anon_sym_COLON, 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, @@ -137159,24 +172888,28 @@ 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, - [143970] = 2, + [158456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 30, + ACTIONS(9333), 1, + anon_sym_POUND_, + ACTIONS(9330), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9336), 25, + anon_sym_COLON, 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, @@ -137193,24 +172926,28 @@ 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, - [144006] = 2, + [158499] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4160), 30, + ACTIONS(9309), 1, + anon_sym_POUND_, + ACTIONS(9306), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, @@ -137227,24 +172964,28 @@ 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, - [144042] = 2, + [158542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4344), 30, + ACTIONS(9309), 1, + anon_sym_POUND_, + ACTIONS(9306), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, @@ -137261,24 +173002,28 @@ 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, - [144078] = 2, + [158585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4348), 30, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, @@ -137295,24 +173040,28 @@ 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, - [144114] = 2, + [158628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 30, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(10157), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2273), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, @@ -137329,24 +173078,28 @@ 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, - [144150] = 2, + [158671] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 30, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(10160), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2272), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, @@ -137363,24 +173116,28 @@ 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, - [144186] = 2, + [158714] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 30, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, @@ -137397,24 +173154,28 @@ 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, - [144222] = 2, + [158757] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 30, + ACTIONS(9271), 1, + anon_sym_POUND_, + ACTIONS(10163), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2266), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9274), 25, + anon_sym_COLON, 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, @@ -137431,24 +173192,28 @@ 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, - [144258] = 2, + [158800] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4360), 30, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, 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, @@ -137465,24 +173230,66 @@ 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, - [144294] = 2, + [158843] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 30, + ACTIONS(9239), 1, + anon_sym_POUND_, + ACTIONS(9236), 2, sym__ws, sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9242), 25, + anon_sym_COLON, + 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, + [158886] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9309), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(9306), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9312), 25, + anon_sym_COLON, 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, @@ -137499,14 +173306,17 @@ 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, - [144330] = 2, + [158929] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 30, + ACTIONS(10166), 1, + anon_sym_COLON, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137516,7 +173326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -137537,10 +173346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144366] = 2, + [158970] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4392), 30, + ACTIONS(10166), 1, + anon_sym_COLON, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137550,7 +173363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -137571,20 +173383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144402] = 2, + [159011] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 30, + ACTIONS(7700), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -137605,20 +173418,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144438] = 2, + [159048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4404), 30, + ACTIONS(9325), 1, + anon_sym_POUND_, + ACTIONS(10170), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2287), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9328), 25, + anon_sym_COLON, 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, @@ -137635,14 +173453,17 @@ 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, - [144474] = 2, + [159091] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 30, + ACTIONS(10166), 1, + anon_sym_COLON, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 29, sym__ws, sym_comment, anon_sym_POUND_, @@ -137652,7 +173473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, - anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -137673,20 +173493,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144510] = 2, + [159132] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4140), 30, + ACTIONS(7646), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -137707,20 +173528,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144546] = 2, + [159169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 30, + ACTIONS(10176), 1, + anon_sym_POUND_, + ACTIONS(10173), 2, sym__ws, sym_comment, + STATE(2404), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10179), 25, + anon_sym_COLON, + 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, + [159212] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10184), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(10181), 2, + sym__ws, + sym_comment, + STATE(2400), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10187), 25, + anon_sym_COLON, 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, @@ -137737,24 +173601,24 @@ 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, - [144582] = 2, + [159255] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 30, + ACTIONS(7593), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -137775,20 +173639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144618] = 2, + [159292] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 30, + ACTIONS(7581), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -137809,54 +173674,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144654] = 2, + [159329] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 30, - sym__ws, - sym_comment, + ACTIONS(9192), 1, 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, - [144690] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4432), 30, + ACTIONS(9189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, 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, @@ -137873,24 +173709,28 @@ 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, - [144726] = 2, + [159372] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4416), 30, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(10189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2260), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, @@ -137907,24 +173747,28 @@ 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, - [144762] = 2, + [159415] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4420), 30, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(10192), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2251), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, @@ -137941,24 +173785,28 @@ 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, - [144798] = 2, + [159458] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 30, + ACTIONS(9167), 1, + anon_sym_POUND_, + ACTIONS(9164), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9170), 25, + anon_sym_COLON, 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, @@ -137975,24 +173823,28 @@ 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, - [144834] = 2, + [159501] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4432), 30, + ACTIONS(10184), 1, + anon_sym_POUND_, + ACTIONS(10195), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2350), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10187), 25, + anon_sym_COLON, 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, @@ -138009,24 +173861,24 @@ 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, - [144870] = 2, + [159544] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4444), 30, + ACTIONS(7533), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138047,20 +173899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144906] = 2, + [159581] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4448), 30, + ACTIONS(9175), 1, + anon_sym_POUND_, + ACTIONS(10198), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2213), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9178), 25, + anon_sym_COLON, 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, @@ -138077,24 +173934,24 @@ 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, - [144942] = 2, + [159624] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4452), 30, + ACTIONS(7497), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138115,20 +173972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [144978] = 2, + [159661] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4456), 30, + ACTIONS(7485), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138149,20 +174007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145014] = 2, + [159698] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(7461), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138183,20 +174042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145050] = 2, + [159735] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4164), 30, + ACTIONS(7457), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138217,20 +174077,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145086] = 2, + [159772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(10137), 1, + anon_sym_POUND_, + ACTIONS(10134), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10140), 25, + anon_sym_COLON, 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, @@ -138247,24 +174112,28 @@ 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, - [145122] = 2, + [159815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(9200), 1, + anon_sym_POUND_, + ACTIONS(10201), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2210), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, @@ -138281,24 +174150,28 @@ 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, - [145158] = 2, + [159858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(9200), 1, + anon_sym_POUND_, + ACTIONS(10204), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2209), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, @@ -138315,24 +174188,28 @@ 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, - [145194] = 2, + [159901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 30, + ACTIONS(10210), 1, + anon_sym_POUND_, + ACTIONS(10207), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2374), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10213), 25, + anon_sym_COLON, 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, @@ -138349,24 +174226,28 @@ 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, - [145230] = 2, + [159944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4272), 30, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, 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, @@ -138383,24 +174264,28 @@ 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, - [145266] = 2, + [159987] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 30, + ACTIONS(10218), 1, + anon_sym_POUND_, + ACTIONS(10215), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10221), 25, + anon_sym_COLON, 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, @@ -138417,24 +174302,24 @@ 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, - [145302] = 2, + [160030] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(7801), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138455,20 +174340,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145338] = 2, + [160067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(10210), 1, + anon_sym_POUND_, + ACTIONS(10223), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2371), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10213), 25, + anon_sym_COLON, 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, @@ -138485,24 +174375,28 @@ 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, - [145374] = 2, + [160110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4460), 30, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(10226), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2208), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, @@ -138519,24 +174413,28 @@ 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, - [145410] = 2, + [160153] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4476), 30, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, 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, @@ -138553,24 +174451,28 @@ 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, - [145446] = 2, + [160196] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4484), 30, + ACTIONS(10176), 1, + anon_sym_POUND_, + ACTIONS(10229), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2354), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10179), 25, + anon_sym_COLON, 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, @@ -138587,24 +174489,28 @@ 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, - [145482] = 2, + [160239] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4504), 30, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(10232), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2204), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, @@ -138621,24 +174527,24 @@ 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, - [145518] = 2, + [160282] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(7850), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138659,20 +174565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145554] = 2, + [160319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(10238), 1, + anon_sym_POUND_, + ACTIONS(10235), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2359), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10241), 25, + anon_sym_COLON, 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, @@ -138689,24 +174600,24 @@ 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, - [145590] = 2, + [160362] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 30, + ACTIONS(7839), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138727,20 +174638,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145626] = 2, + [160399] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 30, + ACTIONS(7835), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138761,20 +174673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145662] = 2, + [160436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, 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, @@ -138791,24 +174708,28 @@ 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, - [145698] = 2, + [160479] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4508), 30, + ACTIONS(10246), 1, + anon_sym_POUND_, + ACTIONS(10243), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2369), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10249), 25, + anon_sym_COLON, 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, @@ -138825,24 +174746,28 @@ 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, - [145734] = 2, + [160522] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4424), 30, + ACTIONS(10254), 1, + anon_sym_POUND_, + ACTIONS(10251), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10257), 25, + anon_sym_COLON, 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, @@ -138859,24 +174784,28 @@ 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, - [145770] = 2, + [160565] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4400), 30, + ACTIONS(10246), 1, + anon_sym_POUND_, + ACTIONS(10259), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2365), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10249), 25, + anon_sym_COLON, 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, @@ -138893,24 +174822,24 @@ 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, - [145806] = 2, + [160608] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 30, + ACTIONS(7676), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -138931,20 +174860,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145842] = 2, + [160645] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 30, + ACTIONS(9211), 1, + anon_sym_POUND_, + ACTIONS(10262), 2, sym__ws, sym_comment, + STATE(2193), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, + 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, + [160688] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9211), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(10265), 2, + sym__ws, + sym_comment, + STATE(2297), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9214), 25, + anon_sym_COLON, 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, @@ -138961,24 +174933,66 @@ 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, - [145878] = 2, + [160731] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4492), 30, + ACTIONS(9219), 1, + anon_sym_POUND_, + ACTIONS(9216), 2, sym__ws, sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9222), 25, + anon_sym_COLON, + 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, + [160774] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9200), 1, anon_sym_POUND_, - aux_sym_num_lit_token1, + ACTIONS(10268), 2, + sym__ws, + sym_comment, + STATE(2207), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9203), 25, + anon_sym_COLON, 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, @@ -138995,24 +175009,24 @@ 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, - [145914] = 2, + [160817] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4488), 30, + ACTIONS(7493), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139033,20 +175047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [145950] = 2, + [160854] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 30, + ACTIONS(10210), 1, + anon_sym_POUND_, + ACTIONS(10271), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, + STATE(2363), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10213), 25, + anon_sym_COLON, 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, @@ -139063,24 +175082,24 @@ 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, - [145986] = 2, + [160897] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4464), 30, + ACTIONS(7517), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139101,20 +175120,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146022] = 2, + [160934] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4472), 30, + ACTIONS(7529), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139135,20 +175155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146058] = 2, + [160971] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 30, + ACTIONS(7529), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139169,20 +175190,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146094] = 2, + [161008] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, + 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, + [161051] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 30, + ACTIONS(7501), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139203,20 +175263,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146130] = 2, + [161088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4440), 30, + ACTIONS(9192), 1, + anon_sym_POUND_, + ACTIONS(9189), 2, + sym__ws, + sym_comment, + STATE(2145), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(9195), 25, + anon_sym_COLON, + 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, + [161131] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7561), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139237,20 +175336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146166] = 2, + [161168] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 30, + ACTIONS(7569), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139271,20 +175371,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146202] = 2, + [161205] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 30, + ACTIONS(7553), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139305,20 +175405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146238] = 2, + [161241] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4380), 30, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139339,20 +175439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146274] = 2, + [161277] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4376), 30, + ACTIONS(7692), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139373,20 +175473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146310] = 2, + [161313] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 30, + ACTIONS(7680), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139407,20 +175507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146346] = 2, + [161349] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 30, + ACTIONS(7670), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139441,20 +175541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146382] = 2, + [161385] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4340), 30, + ACTIONS(7638), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139475,20 +175575,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146418] = 2, + [161421] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4336), 30, + ACTIONS(7626), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139509,20 +175609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146454] = 2, + [161457] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 30, + ACTIONS(7609), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139543,20 +175643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146490] = 2, + [161493] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4320), 30, + ACTIONS(7692), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139577,20 +175677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146526] = 2, + [161529] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 30, + ACTIONS(7597), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139611,20 +175711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146562] = 2, + [161565] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 30, + ACTIONS(7597), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139645,20 +175745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146598] = 2, + [161601] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4144), 30, + ACTIONS(7589), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139679,20 +175779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146634] = 2, + [161637] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4368), 30, + ACTIONS(7589), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139713,20 +175813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146670] = 2, + [161673] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 30, + ACTIONS(7585), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139747,20 +175847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146706] = 2, + [161709] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4284), 30, + ACTIONS(7577), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139781,20 +175881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146742] = 2, + [161745] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 30, + ACTIONS(7573), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139815,20 +175915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146778] = 2, + [161781] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 30, + ACTIONS(7696), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139849,20 +175949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146814] = 2, + [161817] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 30, + ACTIONS(7696), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139883,20 +175983,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146850] = 2, + [161853] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 30, + ACTIONS(7680), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139917,20 +176017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146886] = 2, + [161889] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 30, + ACTIONS(7557), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139951,20 +176051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146922] = 2, + [161925] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 30, + ACTIONS(7630), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -139985,20 +176085,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146958] = 2, + [161961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4232), 30, + ACTIONS(7696), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140019,20 +176119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [146994] = 2, + [161997] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4436), 30, + ACTIONS(7557), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140053,20 +176153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147030] = 2, + [162033] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4224), 30, + ACTIONS(7613), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140087,20 +176187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147066] = 2, + [162069] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 30, + ACTIONS(7549), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140121,20 +176221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147102] = 2, + [162105] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 30, + ACTIONS(7537), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140155,20 +176255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147138] = 2, + [162141] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 30, + ACTIONS(7696), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140189,20 +176289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147174] = 2, + [162177] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 30, + ACTIONS(7720), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140223,20 +176323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147210] = 2, + [162213] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 30, + ACTIONS(7778), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140257,20 +176357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147246] = 2, + [162249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 30, + ACTIONS(10274), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 29, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140291,20 +176392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147282] = 2, + [162287] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 30, + ACTIONS(7728), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140325,20 +176426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147318] = 2, + [162323] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4152), 30, + ACTIONS(7732), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140359,20 +176460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147354] = 2, + [162359] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 30, + ACTIONS(7489), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140393,20 +176494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147390] = 2, + [162395] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 30, + ACTIONS(7601), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140427,20 +176528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147426] = 2, + [162431] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4428), 30, + ACTIONS(7736), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140461,20 +176562,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147462] = 2, + [162467] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4388), 30, + ACTIONS(7489), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140495,20 +176596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147498] = 2, + [162503] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4352), 30, + ACTIONS(7744), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140529,20 +176630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147534] = 2, + [162539] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4412), 30, + ACTIONS(7766), 30, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON, 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, @@ -140563,15 +176664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147570] = 3, + [162575] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5259), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 28, + ACTIONS(7790), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140597,125 +176698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [147607] = 3, + [162611] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5263), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(5261), 27, - 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, - 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_SLASH, - anon_sym_QMARK, - anon_sym_Newline, - aux_sym_format_directive_type_token11, - [147644] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5041), 1, - aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5265), 1, - anon_sym_COMMA, - STATE(2333), 1, - sym__format_token, - STATE(3360), 1, - aux_sym_format_modifiers_repeat1, - STATE(3397), 1, - sym_format_directive_type, - 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, - [147692] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5041), 1, - aux_sym_num_lit_token1, - ACTIONS(5049), 1, - anon_sym_SQUOTE, - ACTIONS(5057), 1, - anon_sym_SLASH, - ACTIONS(5265), 1, - anon_sym_COMMA, - STATE(2333), 1, - sym__format_token, - STATE(3360), 1, - aux_sym_format_modifiers_repeat1, - STATE(3395), 1, - sym_format_directive_type, - 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, - [147740] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5267), 27, + ACTIONS(7813), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140737,16 +176728,19 @@ 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, - [147773] = 2, + [162647] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5269), 27, + ACTIONS(7774), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140768,16 +176762,19 @@ 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, - [147806] = 2, + [162683] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5271), 27, + ACTIONS(7774), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140799,16 +176796,19 @@ 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, - [147839] = 2, + [162719] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5273), 27, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140830,16 +176830,19 @@ 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, - [147872] = 2, + [162755] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5271), 27, + ACTIONS(7565), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140861,16 +176864,19 @@ 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, - [147905] = 2, + [162791] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5275), 27, + ACTIONS(7545), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140892,16 +176898,19 @@ 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, - [147938] = 2, + [162827] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5277), 27, + ACTIONS(7744), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140923,16 +176932,19 @@ 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, - [147971] = 2, + [162863] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5279), 27, + ACTIONS(7525), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140954,16 +176966,19 @@ 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, - [148004] = 2, + [162899] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5281), 27, + ACTIONS(7553), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -140985,16 +177000,19 @@ 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, - [148037] = 2, + [162935] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5283), 27, + ACTIONS(7712), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141016,16 +177034,19 @@ 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, - [148070] = 2, + [162971] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5285), 27, + ACTIONS(7824), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141047,16 +177068,19 @@ 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, - [148103] = 2, + [163007] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5285), 27, + ACTIONS(7831), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141078,16 +177102,19 @@ 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, - [148136] = 2, + [163043] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5287), 27, + ACTIONS(7666), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141109,16 +177136,19 @@ 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, - [148169] = 2, + [163079] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5289), 27, + ACTIONS(7541), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141140,16 +177170,19 @@ 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, - [148202] = 2, + [163115] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5291), 27, + ACTIONS(7770), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141171,16 +177204,19 @@ 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, - [148235] = 2, + [163151] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5291), 27, + ACTIONS(7662), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141202,16 +177238,19 @@ 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, - [148268] = 2, + [163187] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5293), 27, + ACTIONS(7525), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141233,16 +177272,19 @@ 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, - [148301] = 2, + [163223] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5295), 27, + ACTIONS(7658), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141264,16 +177306,19 @@ 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, - [148334] = 2, + [163259] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5297), 27, + ACTIONS(7650), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141295,16 +177340,19 @@ 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, - [148367] = 2, + [163295] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5299), 27, + ACTIONS(7449), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141326,16 +177374,19 @@ 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, - [148400] = 2, + [163331] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5301), 27, + ACTIONS(7642), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141357,16 +177408,19 @@ 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, - [148433] = 2, + [163367] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5303), 27, + ACTIONS(7752), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141388,16 +177442,19 @@ 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, - [148466] = 2, + [163403] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5303), 27, + ACTIONS(7846), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141419,16 +177476,19 @@ 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, - [148499] = 2, + [163439] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5305), 27, + ACTIONS(7634), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141450,16 +177510,19 @@ 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, - [148532] = 2, + [163475] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5307), 27, + ACTIONS(7525), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141481,16 +177544,19 @@ 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, - [148565] = 2, + [163511] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5309), 27, + ACTIONS(7453), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141512,16 +177578,19 @@ 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, - [148598] = 2, + [163547] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5311), 27, + ACTIONS(7752), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141543,16 +177612,19 @@ 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, - [148631] = 2, + [163583] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5313), 27, + ACTIONS(7786), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141574,16 +177646,19 @@ 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, - [148664] = 2, + [163619] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5315), 27, + ACTIONS(7736), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141605,16 +177680,19 @@ 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, - [148697] = 2, + [163655] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5317), 27, + ACTIONS(7744), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141636,16 +177714,19 @@ 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, - [148730] = 2, + [163691] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5319), 27, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141667,16 +177748,19 @@ 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, - [148763] = 2, + [163727] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5321), 27, + ACTIONS(7817), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141698,16 +177782,19 @@ 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, - [148796] = 2, + [163763] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5321), 27, + ACTIONS(7782), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141729,16 +177816,19 @@ 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, - [148829] = 2, + [163799] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5319), 27, + ACTIONS(7794), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141760,16 +177850,19 @@ 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, - [148862] = 2, + [163835] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5323), 27, + ACTIONS(7704), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141791,16 +177884,19 @@ 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, - [148895] = 2, + [163871] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5325), 27, + ACTIONS(7759), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141822,16 +177918,19 @@ 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, - [148928] = 2, + [163907] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5315), 27, + ACTIONS(7724), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141853,16 +177952,19 @@ 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, - [148961] = 2, + [163943] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5327), 27, + ACTIONS(7521), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141884,16 +177986,19 @@ 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, - [148994] = 2, + [163979] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5289), 27, + ACTIONS(7505), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141915,16 +178020,19 @@ 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, - [149027] = 2, + [164015] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5329), 27, + ACTIONS(7744), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141946,16 +178054,19 @@ 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, - [149060] = 2, + [164051] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5329), 27, + ACTIONS(7513), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -141977,16 +178088,19 @@ 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, - [149093] = 2, + [164087] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5331), 27, + ACTIONS(7748), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142008,16 +178122,19 @@ 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, - [149126] = 2, + [164123] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5325), 27, + ACTIONS(7654), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142039,16 +178156,19 @@ 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, - [149159] = 2, + [164159] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5333), 27, + ACTIONS(7481), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142070,16 +178190,19 @@ 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, - [149192] = 2, + [164195] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5331), 27, + ACTIONS(7688), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142101,16 +178224,19 @@ 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, - [149225] = 2, + [164231] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5335), 27, + ACTIONS(7794), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142132,16 +178258,19 @@ 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, - [149258] = 2, + [164267] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5337), 27, + ACTIONS(7786), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142163,16 +178292,19 @@ 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, - [149291] = 2, + [164303] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5337), 27, + ACTIONS(7465), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142194,16 +178326,19 @@ 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, - [149324] = 2, + [164339] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5339), 27, + ACTIONS(7778), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142225,16 +178360,19 @@ 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, - [149357] = 2, + [164375] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5341), 27, + ACTIONS(7469), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142256,16 +178394,19 @@ 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, - [149390] = 2, + [164411] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5343), 27, + ACTIONS(7473), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142287,16 +178428,19 @@ 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, - [149423] = 2, + [164447] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5345), 27, + ACTIONS(7477), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142318,16 +178462,19 @@ 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, - [149456] = 2, + [164483] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5347), 27, + ACTIONS(7774), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142349,16 +178496,19 @@ 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, - [149489] = 2, + [164519] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5349), 27, + ACTIONS(7509), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142380,16 +178530,19 @@ 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, - [149522] = 2, + [164555] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5351), 27, + ACTIONS(7774), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142411,16 +178564,19 @@ 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, - [149555] = 2, + [164591] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5353), 27, + ACTIONS(7860), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142442,16 +178598,19 @@ 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, - [149588] = 2, + [164627] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5351), 27, + ACTIONS(7684), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142473,16 +178632,19 @@ 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, - [149621] = 2, + [164663] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5355), 27, + ACTIONS(7708), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -142504,13 +178666,18 @@ 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, - [149654] = 2, + [164699] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5357), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10276), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142538,10 +178705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149687] = 2, + [164738] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5353), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10279), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142569,10 +178740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149720] = 2, + [164777] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5359), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10282), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142600,10 +178775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149753] = 2, + [164816] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5361), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10285), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142631,10 +178810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149786] = 2, + [164855] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5363), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10288), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142662,10 +178845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149819] = 2, + [164894] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5363), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10291), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142693,10 +178880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149852] = 2, + [164933] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5361), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10294), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142724,10 +178915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149885] = 2, + [164972] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5365), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10297), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142755,10 +178950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149918] = 2, + [165011] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5365), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10300), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142786,10 +178985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149951] = 2, + [165050] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5367), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10303), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142817,10 +179020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [149984] = 2, + [165089] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5369), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10306), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142848,10 +179055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150017] = 2, + [165128] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5369), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10309), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142879,10 +179090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150050] = 2, + [165167] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5371), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10312), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142910,10 +179125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150083] = 2, + [165206] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5373), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10315), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142941,10 +179160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150116] = 2, + [165245] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5367), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10318), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142972,10 +179195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150149] = 2, + [165284] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5375), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10321), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143003,10 +179230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150182] = 2, + [165323] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5377), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10324), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143034,10 +179265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150215] = 2, + [165362] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5377), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10327), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143065,10 +179300,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150248] = 2, + [165401] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5379), 27, + ACTIONS(10332), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(10330), 27, + 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, + 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_SLASH, + anon_sym_QMARK, + anon_sym_Newline, + aux_sym_format_directive_type_token11, + [165438] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10334), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143096,10 +179369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150281] = 2, + [165477] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5379), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10337), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143127,10 +179404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150314] = 2, + [165516] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5381), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10340), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143158,10 +179439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150347] = 2, + [165555] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5383), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10343), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143189,10 +179474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150380] = 2, + [165594] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5385), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10346), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143220,10 +179509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150413] = 2, + [165633] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5387), 27, + ACTIONS(10168), 1, + anon_sym_COLON_COLON, + ACTIONS(10349), 1, + anon_sym_COLON, + ACTIONS(7617), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143251,13 +179544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150446] = 2, + [165672] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5389), 27, + ACTIONS(10352), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143282,13 +179576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150479] = 2, + [165706] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5391), 27, + ACTIONS(10354), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143313,13 +179608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150512] = 2, + [165740] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5373), 27, + ACTIONS(10356), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143344,13 +179640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150545] = 2, + [165774] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5391), 27, + ACTIONS(10358), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143375,13 +179672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150578] = 2, + [165808] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5389), 27, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143406,13 +179704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150611] = 2, + [165842] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5393), 27, + ACTIONS(10362), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143437,13 +179736,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150644] = 2, + [165876] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1261), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [165928] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5395), 27, + ACTIONS(10372), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143468,44 +179809,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150677] = 2, + [165962] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5393), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1269), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, sym__ws, sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166014] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, 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, - [150710] = 2, + STATE(405), 1, + sym_for_clause_word, + STATE(1276), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5397), 27, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143530,13 +179923,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150743] = 2, + [166100] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1277), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166152] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5397), 27, + ACTIONS(10360), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143561,13 +179996,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150776] = 2, + [166186] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1260), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166238] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5399), 27, + ACTIONS(10374), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143592,13 +180069,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150809] = 2, + [166272] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5401), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1270), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166324] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10358), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143623,13 +180142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150842] = 2, + [166358] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5401), 27, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143654,13 +180174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150875] = 2, + [166392] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5403), 27, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143685,13 +180206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150908] = 2, + [166426] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5405), 27, + ACTIONS(10378), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143716,13 +180238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150941] = 2, + [166460] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5405), 27, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143747,13 +180270,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [150974] = 2, + [166494] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5403), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1262), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, sym__ws, sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166546] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(10382), 1, + anon_sym_COMMA, + STATE(2982), 1, + sym__format_token, + STATE(3998), 1, + aux_sym_format_modifiers_repeat1, + STATE(4016), 1, + sym_format_directive_type, + ACTIONS(8442), 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, + [166594] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1263), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166646] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1267), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [166698] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10380), 28, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143778,13 +180464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151007] = 2, + [166732] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5407), 27, + ACTIONS(10378), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143809,13 +180496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151040] = 2, + [166766] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5407), 27, + ACTIONS(10384), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143840,13 +180528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151073] = 2, + [166800] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5409), 27, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143871,13 +180560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151106] = 2, + [166834] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5411), 27, + ACTIONS(10386), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143902,13 +180592,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151139] = 2, + [166868] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(8452), 1, + anon_sym_SLASH, + ACTIONS(10382), 1, + anon_sym_COMMA, + STATE(2982), 1, + sym__format_token, + STATE(3998), 1, + aux_sym_format_modifiers_repeat1, + STATE(4018), 1, + sym_format_directive_type, + ACTIONS(8442), 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, + [166916] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5411), 27, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143933,13 +180663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151172] = 2, + [166950] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5371), 27, + ACTIONS(10390), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143964,13 +180695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151205] = 2, + [166984] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5413), 27, + ACTIONS(10380), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -143995,13 +180727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151238] = 2, + [167018] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5415), 27, + ACTIONS(10392), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144026,13 +180759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151271] = 2, + [167052] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5417), 27, + ACTIONS(10354), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144057,13 +180791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151304] = 2, + [167086] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5419), 27, + ACTIONS(10394), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144088,13 +180823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151337] = 2, + [167120] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5333), 27, + ACTIONS(10378), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144119,13 +180855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151370] = 2, + [167154] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5413), 27, + ACTIONS(10376), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144150,13 +180887,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151403] = 2, + [167188] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1278), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167240] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5421), 27, + ACTIONS(10396), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144181,13 +180960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151436] = 2, + [167274] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5421), 27, + ACTIONS(10398), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144212,13 +180992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151469] = 2, + [167308] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5423), 27, + ACTIONS(10400), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144243,13 +181024,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151502] = 2, + [167342] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1281), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167394] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5425), 27, + ACTIONS(10402), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144274,13 +181097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151535] = 2, + [167428] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5427), 27, + ACTIONS(10404), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144305,13 +181129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151568] = 2, + [167462] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5427), 27, + ACTIONS(10390), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144336,13 +181161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151601] = 2, + [167496] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5425), 27, + ACTIONS(10406), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144367,13 +181193,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151634] = 2, + [167530] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5429), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1275), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167582] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10394), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144398,13 +181266,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151667] = 2, + [167616] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5431), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1259), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167668] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10408), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144429,13 +181339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151700] = 2, + [167702] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5433), 27, + ACTIONS(10410), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144460,13 +181371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151733] = 2, + [167736] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5433), 27, + ACTIONS(10412), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144491,13 +181403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151766] = 2, + [167770] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5435), 27, + ACTIONS(10414), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144522,13 +181435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151799] = 2, + [167804] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5435), 27, + ACTIONS(10396), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144553,13 +181467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151832] = 2, + [167838] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5437), 27, + ACTIONS(10408), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144584,13 +181499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151865] = 2, + [167872] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5439), 27, + ACTIONS(10398), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144615,13 +181531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151898] = 2, + [167906] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5439), 27, + ACTIONS(10388), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144646,13 +181563,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151931] = 2, + [167940] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5441), 27, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, + anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1256), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, sym__ws, sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [167992] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1654), 1, + anon_sym_being, + ACTIONS(10366), 1, anon_sym_POUND_, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, + anon_sym_cl, + STATE(405), 1, + sym_for_clause_word, + STATE(1271), 1, + aux_sym_for_clause_repeat1, + STATE(1611), 1, + sym__for_part, + ACTIONS(10364), 2, + sym__ws, + sym_comment, + STATE(2746), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(1656), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [168044] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10378), 28, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144677,13 +181677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151964] = 2, + [168078] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5267), 27, + ACTIONS(10414), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144708,13 +181709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [151997] = 2, + [168112] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5443), 27, + ACTIONS(10352), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144739,13 +181741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152030] = 2, + [168146] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5423), 27, + ACTIONS(10416), 28, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -144770,257 +181773,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [152063] = 10, + [168180] = 2, ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(950), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, - sym__ws, - sym_comment, - STATE(2128), 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, - [152111] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(960), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, - sym__ws, - sym_comment, - STATE(2128), 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, - [152159] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(945), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, - sym__ws, - sym_comment, - STATE(2128), 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, - [152207] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(959), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, - sym__ws, - sym_comment, - STATE(2128), 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, - [152255] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(948), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, + sym_block_comment, + ACTIONS(10358), 28, sym__ws, sym_comment, - STATE(2128), 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, - [152303] = 10, + anon_sym_POUND_, + anon_sym_COLON, + 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, + [168214] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10352), 28, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(5449), 1, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(947), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, + 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, + [168248] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10418), 28, sym__ws, sym_comment, - STATE(2128), 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, - [152351] = 10, + anon_sym_POUND_, + anon_sym_COLON, + 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, + [168282] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, + ACTIONS(1654), 1, anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10366), 1, anon_sym_POUND_, - ACTIONS(5449), 1, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, anon_sym_cl, - STATE(293), 1, + STATE(405), 1, sym_for_clause_word, - STATE(957), 1, + STATE(1273), 1, aux_sym_for_clause_repeat1, - STATE(1189), 1, + STATE(1611), 1, sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10364), 2, sym__ws, sym_comment, - STATE(2128), 3, + STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, + ACTIONS(1656), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -145030,35 +181903,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [152399] = 10, + [168334] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, + ACTIONS(1654), 1, anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10366), 1, anon_sym_POUND_, - ACTIONS(5449), 1, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, anon_sym_cl, - STATE(293), 1, + STATE(405), 1, sym_for_clause_word, - STATE(956), 1, + STATE(1257), 1, aux_sym_for_clause_repeat1, - STATE(1189), 1, + STATE(1611), 1, sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10364), 2, sym__ws, sym_comment, - STATE(2128), 3, + STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, + ACTIONS(1656), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -145068,35 +181944,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [152447] = 10, + [168386] = 11, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, + ACTIONS(1654), 1, anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10366), 1, anon_sym_POUND_, - ACTIONS(5449), 1, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, anon_sym_cl, - STATE(293), 1, + STATE(405), 1, sym_for_clause_word, - STATE(944), 1, + STATE(1258), 1, aux_sym_for_clause_repeat1, - STATE(1189), 1, + STATE(1611), 1, sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10364), 2, sym__ws, sym_comment, - STATE(2128), 3, + STATE(2746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, + ACTIONS(1656), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -145106,73 +181985,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [152495] = 10, + [168438] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, - anon_sym_being, - ACTIONS(5447), 1, - anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(949), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10420), 28, sym__ws, sym_comment, - STATE(2128), 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, - [152543] = 10, + anon_sym_POUND_, + anon_sym_COLON, + 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, + [168472] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, + ACTIONS(1654), 1, anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10366), 1, anon_sym_POUND_, - ACTIONS(5449), 1, + ACTIONS(10368), 1, + anon_sym_COLON, + ACTIONS(10370), 1, anon_sym_cl, - STATE(293), 1, + STATE(432), 1, sym_for_clause_word, - STATE(946), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10422), 2, sym__ws, sym_comment, - STATE(2128), 3, + STATE(2747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, + ACTIONS(1656), 16, anon_sym_in, anon_sym_across, anon_sym_using, @@ -145182,35 +182054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [152591] = 10, + [168518] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(308), 1, + ACTIONS(7405), 1, anon_sym_being, - ACTIONS(5447), 1, + ACTIONS(10427), 1, anon_sym_POUND_, - ACTIONS(5449), 1, - anon_sym_cl, - STATE(293), 1, - sym_for_clause_word, - STATE(958), 1, - aux_sym_for_clause_repeat1, - STATE(1189), 1, - sym__for_part, - ACTIONS(5445), 2, + ACTIONS(10424), 2, sym__ws, sym_comment, - STATE(2128), 3, + STATE(2747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(310), 15, + ACTIONS(7407), 18, + anon_sym_COLON, + anon_sym_cl, anon_sym_in, anon_sym_across, anon_sym_using, @@ -145220,16 +182087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [152639] = 2, + [168557] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5451), 25, + ACTIONS(10430), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -145255,10 +182123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [152670] = 2, + [168588] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5453), 25, + ACTIONS(10432), 25, aux_sym_num_lit_token1, anon_sym_TILDE, anon_sym_SQUOTE, @@ -145284,7 +182152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_Newline, aux_sym_format_directive_type_token11, - [152701] = 18, + [168619] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -145293,222 +182161,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5459), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2461), 1, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(5455), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2125), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2251), 5, + STATE(2883), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152763] = 20, + [168681] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5467), 1, + ACTIONS(10446), 1, anon_sym_POUND_, - ACTIONS(5469), 1, + ACTIONS(10448), 1, aux_sym_sym_lit_token1, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - STATE(1823), 1, + STATE(2032), 1, sym_unquoting_lit, - STATE(1839), 1, + STATE(2033), 1, sym_list_lit, - STATE(2231), 1, + STATE(2847), 1, sym_kwd_lit, - STATE(2232), 1, + STATE(2857), 1, sym_sym_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5465), 2, + ACTIONS(10444), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2123), 3, + STATE(2984), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152829] = 18, + [168747] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(5477), 1, + ACTIONS(10454), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2460), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, - ACTIONS(5473), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2124), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2251), 5, + STATE(2885), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [152891] = 20, + [168809] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5467), 1, + ACTIONS(10446), 1, anon_sym_POUND_, - ACTIONS(5469), 1, + ACTIONS(10448), 1, aux_sym_sym_lit_token1, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - STATE(1642), 1, + STATE(2028), 1, sym_list_lit, - STATE(1643), 1, + STATE(2029), 1, sym_unquoting_lit, - STATE(2220), 1, + STATE(2866), 1, sym_kwd_lit, - STATE(2233), 1, + STATE(2867), 1, sym_sym_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5479), 2, + ACTIONS(10444), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 3, + STATE(2984), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [152957] = 18, + [168875] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, - anon_sym_DQUOTE, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10446), 1, anon_sym_POUND_, - ACTIONS(5461), 1, - anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(10448), 1, aux_sym_sym_lit_token1, - ACTIONS(5477), 1, - anon_sym_POUND_QMARK, - STATE(2250), 1, - sym__bare_map_lit, - STATE(2258), 1, + ACTIONS(10450), 1, + anon_sym_COMMA, + STATE(2030), 1, + sym_unquoting_lit, + STATE(2031), 1, + sym_list_lit, + STATE(2862), 1, + sym_kwd_lit, + STATE(2864), 1, + sym_sym_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2460), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5481), 2, + ACTIONS(10456), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2753), 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, - [153019] = 18, + [168941] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -145517,210 +182387,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5459), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2461), 1, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(5481), 2, + ACTIONS(10458), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(2750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2248), 5, + STATE(2887), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [153081] = 18, + [169003] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(5477), 1, + ACTIONS(10454), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2460), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, - ACTIONS(5481), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2252), 5, + STATE(2883), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [153143] = 20, - ACTIONS(29), 1, - anon_sym_LPAREN, + [169065] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(4707), 1, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5467), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5469), 1, + ACTIONS(10440), 1, + anon_sym_LBRACE, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(5471), 1, - anon_sym_COMMA, - STATE(1772), 1, - sym_list_lit, - STATE(1773), 1, - sym_unquoting_lit, - STATE(2219), 1, - sym_kwd_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2258), 1, + ACTIONS(10454), 1, + anon_sym_POUND_QMARK, + STATE(2880), 1, + sym__bare_map_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, - ACTIONS(5483), 2, - sym__ws, - sym_comment, - STATE(1451), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2131), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [153209] = 8, - ACTIONS(47), 1, - sym_block_comment, - 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, + ACTIONS(10460), 2, sym__ws, sym_comment, - STATE(2133), 3, + STATE(2752), 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, + STATE(2877), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [169127] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(606), 1, + ACTIONS(6041), 1, anon_sym_COLON, - ACTIONS(608), 1, + ACTIONS(6043), 1, anon_sym_COLON_COLON, - ACTIONS(610), 1, + ACTIONS(6045), 1, anon_sym_DQUOTE, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(10452), 1, aux_sym_sym_lit_token1, - ACTIONS(5477), 1, + ACTIONS(10454), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2460), 1, + STATE(3104), 1, aux_sym_list_lit_repeat1, - ACTIONS(5487), 2, + ACTIONS(10462), 2, sym__ws, sym_comment, - STATE(2126), 3, + STATE(2756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2245), 5, + STATE(2887), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [153313] = 18, + [169189] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -145729,88 +182563,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5459), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2461), 1, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(5489), 2, + ACTIONS(10464), 2, sym__ws, sym_comment, - STATE(2132), 3, + STATE(2761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2245), 5, + STATE(2877), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [153375] = 20, + [169251] = 20, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(474), 1, + ACTIONS(5029), 1, anon_sym_COLON, - ACTIONS(476), 1, + ACTIONS(5031), 1, anon_sym_COLON_COLON, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5467), 1, + ACTIONS(10446), 1, anon_sym_POUND_, - ACTIONS(5469), 1, + ACTIONS(10448), 1, aux_sym_sym_lit_token1, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - STATE(1834), 1, + STATE(1993), 1, sym_list_lit, - STATE(1840), 1, + STATE(1996), 1, sym_unquoting_lit, - STATE(2228), 1, + STATE(2846), 1, sym_kwd_lit, - STATE(2229), 1, + STATE(2872), 1, sym_sym_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5479), 2, + ACTIONS(10466), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2284), 3, + STATE(2751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [153441] = 18, + [169317] = 18, ACTIONS(17), 1, anon_sym_COLON, ACTIONS(19), 1, @@ -145819,56 +182653,876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5457), 1, + ACTIONS(10436), 1, anon_sym_POUND_, - ACTIONS(5459), 1, + ACTIONS(10438), 1, aux_sym_sym_lit_token1, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, + ACTIONS(10442), 1, anon_sym_POUND_QMARK, - STATE(2250), 1, + STATE(2880), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2461), 1, + STATE(3106), 1, aux_sym_list_lit_repeat1, - ACTIONS(5481), 2, + ACTIONS(10434), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2252), 5, + STATE(2885), 5, sym_kwd_lit, sym_str_lit, sym_sym_lit, sym_map_lit, sym_read_cond_lit, - [153503] = 6, + [169379] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7718), 1, + anon_sym_being, + ACTIONS(10468), 1, + anon_sym_COLON, + ACTIONS(10470), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 20, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169414] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7455), 1, + anon_sym_being, + ACTIONS(10468), 1, + anon_sym_COLON, + ACTIONS(10470), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 20, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169449] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7742), 2, + anon_sym_COLON, + anon_sym_being, + ACTIONS(7740), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169480] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7619), 1, + anon_sym_being, + ACTIONS(10470), 1, + anon_sym_COLON_COLON, + ACTIONS(10472), 1, + anon_sym_COLON, + ACTIONS(7617), 20, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169515] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7445), 1, + anon_sym_being, + ACTIONS(10475), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169548] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7619), 1, + anon_sym_being, + ACTIONS(10468), 1, + anon_sym_COLON, + ACTIONS(10470), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 20, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169583] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7837), 1, + anon_sym_being, + ACTIONS(7835), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169613] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7483), 1, + anon_sym_being, + ACTIONS(7481), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169643] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7714), 1, + anon_sym_being, + ACTIONS(7712), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169673] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7862), 1, + anon_sym_being, + ACTIONS(7860), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169703] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7803), 1, + anon_sym_being, + ACTIONS(7801), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169733] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7819), 1, + anon_sym_being, + ACTIONS(7817), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169763] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7459), 1, + anon_sym_being, + ACTIONS(7457), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169793] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7463), 1, + anon_sym_being, + ACTIONS(7461), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169823] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7571), 1, + anon_sym_being, + ACTIONS(7569), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169853] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7563), 1, + anon_sym_being, + ACTIONS(7561), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169883] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7487), 1, + anon_sym_being, + ACTIONS(7485), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169913] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7499), 1, + anon_sym_being, + ACTIONS(7497), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169943] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7503), 1, + anon_sym_being, + ACTIONS(7501), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [169973] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 1, + anon_sym_being, + ACTIONS(7529), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170003] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7535), 1, + anon_sym_being, + ACTIONS(7533), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170033] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7852), 1, + anon_sym_being, + ACTIONS(7850), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170063] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7531), 1, + anon_sym_being, + ACTIONS(7529), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170093] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7507), 1, + anon_sym_being, + ACTIONS(7505), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170123] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7841), 1, + anon_sym_being, + ACTIONS(7839), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170153] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7583), 1, + anon_sym_being, + ACTIONS(7581), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170183] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7595), 1, + anon_sym_being, + ACTIONS(7593), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170213] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7678), 1, + anon_sym_being, + ACTIONS(7676), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170243] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7644), 1, + anon_sym_being, + ACTIONS(7642), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170273] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7648), 1, + anon_sym_being, + ACTIONS(7646), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170303] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4102), 1, + ACTIONS(7451), 1, anon_sym_being, - ACTIONS(5494), 1, - anon_sym_POUND_, - ACTIONS(5491), 2, + ACTIONS(7449), 21, sym__ws, sym_comment, - STATE(2133), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 16, + anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145879,25 +183533,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153540] = 5, + [170333] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(7660), 1, anon_sym_being, - ACTIONS(5497), 1, - anon_sym_COLON, - ACTIONS(5499), 1, - anon_sym_COLON_COLON, - ACTIONS(4500), 19, + ACTIONS(7658), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145908,25 +183560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153574] = 5, + [170363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 1, + ACTIONS(7664), 1, anon_sym_being, - ACTIONS(5497), 1, - anon_sym_COLON, - ACTIONS(5499), 1, - anon_sym_COLON_COLON, - ACTIONS(4464), 19, + ACTIONS(7662), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145937,25 +183587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153608] = 5, + [170393] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4502), 1, + ACTIONS(7495), 1, anon_sym_being, - ACTIONS(5499), 1, - anon_sym_COLON_COLON, - ACTIONS(5501), 1, - anon_sym_COLON, - ACTIONS(4500), 19, + ACTIONS(7493), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145966,25 +183614,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153642] = 5, + [170423] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4498), 1, + ACTIONS(7702), 1, anon_sym_being, - ACTIONS(5497), 1, - anon_sym_COLON, - ACTIONS(5499), 1, - anon_sym_COLON_COLON, - ACTIONS(4496), 19, + ACTIONS(7700), 21, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -145995,23 +183641,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153676] = 3, + [170453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 2, + ACTIONS(7607), 1, + anon_sym_being, + ACTIONS(7605), 21, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [170483] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7519), 1, anon_sym_being, - ACTIONS(4512), 20, + ACTIONS(7517), 21, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, + anon_sym_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -146022,20 +183695,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_to, anon_sym_upto, + anon_sym_upfrom, anon_sym_downto, anon_sym_downfrom, anon_sym_on, anon_sym_by, anon_sym_then, anon_sym_EQ, - [153706] = 3, + [170513] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7803), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7801), 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, + [170542] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7571), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7569), 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, + [170571] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 3, + ACTIONS(7583), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4428), 18, + ACTIONS(7581), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146054,14 +183780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153735] = 3, + [170600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 3, + ACTIONS(7852), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4408), 18, + ACTIONS(7850), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146080,14 +183806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153764] = 3, + [170629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 3, + ACTIONS(7451), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4276), 18, + ACTIONS(7449), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146106,57 +183832,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153793] = 20, + [170658] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5503), 1, + ACTIONS(10477), 1, anon_sym_POUND, - ACTIONS(5505), 1, + ACTIONS(10479), 1, anon_sym_POUND_QMARK, - ACTIONS(5507), 1, + ACTIONS(10481), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5509), 1, + ACTIONS(10483), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5511), 1, + ACTIONS(10485), 1, anon_sym_SQUOTE, - ACTIONS(5513), 1, + ACTIONS(10487), 1, anon_sym_COMMA_AT, - ACTIONS(5515), 1, + ACTIONS(10489), 1, anon_sym_POUND_PLUS, - ACTIONS(5517), 1, + ACTIONS(10491), 1, anon_sym_POUND_DASH, - ACTIONS(5519), 1, + ACTIONS(10493), 1, anon_sym_POUNDC, - ACTIONS(5521), 1, + ACTIONS(10495), 1, anon_sym_POUNDc, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(1021), 1, + sym__bare_set_lit, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2339), 1, - sym__bare_set_lit, - STATE(2301), 3, + STATE(1022), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [153856] = 3, + [170721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 3, + ACTIONS(7495), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4296), 18, + ACTIONS(7493), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146175,14 +183901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153885] = 3, + [170750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 3, + ACTIONS(7714), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4328), 18, + ACTIONS(7712), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146201,14 +183927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153914] = 3, + [170779] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 3, + ACTIONS(7664), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4512), 18, + ACTIONS(7662), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146227,7 +183953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153943] = 20, + [170808] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, @@ -146236,74 +183962,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5523), 1, + ACTIONS(10497), 1, anon_sym_POUND, - ACTIONS(5525), 1, + ACTIONS(10499), 1, anon_sym_POUND_QMARK, - ACTIONS(5527), 1, + ACTIONS(10501), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5529), 1, + ACTIONS(10503), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5531), 1, + ACTIONS(10505), 1, anon_sym_SQUOTE, - ACTIONS(5533), 1, + ACTIONS(10507), 1, anon_sym_COMMA_AT, - ACTIONS(5535), 1, + ACTIONS(10509), 1, anon_sym_POUND_PLUS, - ACTIONS(5537), 1, + ACTIONS(10511), 1, anon_sym_POUND_DASH, - ACTIONS(5539), 1, + ACTIONS(10513), 1, anon_sym_POUNDC, - ACTIONS(5541), 1, + ACTIONS(10515), 1, anon_sym_POUNDc, - STATE(1474), 1, + STATE(1861), 1, sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1473), 3, + STATE(1862), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154006] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4334), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(4332), 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, - [154035] = 3, + [170871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, + ACTIONS(7607), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4300), 18, + ACTIONS(7605), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146322,57 +184022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154064] = 20, + [170900] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(5543), 1, + ACTIONS(10507), 1, + anon_sym_COMMA_AT, + ACTIONS(10517), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(10519), 1, anon_sym_POUND_QMARK, - ACTIONS(5547), 1, + ACTIONS(10521), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5549), 1, + ACTIONS(10523), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5551), 1, + ACTIONS(10525), 1, anon_sym_SQUOTE, - ACTIONS(5553), 1, - anon_sym_COMMA_AT, - ACTIONS(5555), 1, + ACTIONS(10527), 1, anon_sym_POUND_PLUS, - ACTIONS(5557), 1, + ACTIONS(10529), 1, anon_sym_POUND_DASH, - ACTIONS(5559), 1, + ACTIONS(10531), 1, anon_sym_POUNDC, - ACTIONS(5561), 1, + ACTIONS(10533), 1, anon_sym_POUNDc, - STATE(1832), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1831), 3, + STATE(2987), 1, + sym__bare_set_lit, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154127] = 3, + [170963] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 3, + ACTIONS(7595), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4216), 18, + ACTIONS(7593), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146391,83 +184091,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154156] = 20, + [170992] = 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(614), 1, - anon_sym_LPAREN, - ACTIONS(5503), 1, + ACTIONS(10497), 1, anon_sym_POUND, - ACTIONS(5519), 1, - anon_sym_POUNDC, - ACTIONS(5521), 1, - anon_sym_POUNDc, - ACTIONS(5545), 1, + ACTIONS(10499), 1, anon_sym_POUND_QMARK, - ACTIONS(5563), 1, + ACTIONS(10501), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5565), 1, + ACTIONS(10513), 1, + anon_sym_POUNDC, + ACTIONS(10515), 1, + anon_sym_POUNDc, + ACTIONS(10535), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5567), 1, + ACTIONS(10537), 1, anon_sym_SQUOTE, - ACTIONS(5569), 1, + ACTIONS(10539), 1, anon_sym_COMMA_AT, - ACTIONS(5571), 1, + ACTIONS(10541), 1, anon_sym_POUND_PLUS, - ACTIONS(5573), 1, + ACTIONS(10543), 1, anon_sym_POUND_DASH, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(1861), 1, + sym__bare_set_lit, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2339), 1, - sym__bare_set_lit, - STATE(2301), 3, + STATE(1862), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154219] = 3, + [171055] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 3, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, anon_sym_POUND, - anon_sym_COLON, + ACTIONS(10547), 1, anon_sym_POUND_QMARK, - ACTIONS(4384), 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(10549), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10551), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10553), 1, anon_sym_SQUOTE, + ACTIONS(10555), 1, anon_sym_COMMA_AT, + ACTIONS(10557), 1, anon_sym_POUND_PLUS, + ACTIONS(10559), 1, anon_sym_POUND_DASH, + ACTIONS(10561), 1, anon_sym_POUNDC, + ACTIONS(10563), 1, anon_sym_POUNDc, - [154248] = 3, + STATE(1461), 1, + sym__bare_set_lit, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, + aux_sym_list_lit_repeat1, + STATE(2901), 1, + sym__metadata_lit, + STATE(1462), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4518), 3, + ACTIONS(7531), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4516), 18, + ACTIONS(7529), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146486,57 +184203,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154277] = 20, + [171147] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(5575), 1, + ACTIONS(10517), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(10531), 1, + anon_sym_POUNDC, + ACTIONS(10533), 1, + anon_sym_POUNDc, + ACTIONS(10565), 1, anon_sym_POUND_QMARK, - ACTIONS(5579), 1, + ACTIONS(10567), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5581), 1, + ACTIONS(10569), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5583), 1, + ACTIONS(10571), 1, anon_sym_SQUOTE, - ACTIONS(5585), 1, + ACTIONS(10573), 1, anon_sym_COMMA_AT, - ACTIONS(5587), 1, + ACTIONS(10575), 1, anon_sym_POUND_PLUS, - ACTIONS(5589), 1, + ACTIONS(10577), 1, anon_sym_POUND_DASH, - ACTIONS(5591), 1, - anon_sym_POUNDC, - ACTIONS(5593), 1, - anon_sym_POUNDc, - STATE(1942), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1941), 3, + STATE(2987), 1, + sym__bare_set_lit, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154340] = 3, + [171210] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 3, + ACTIONS(7862), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4148), 18, + ACTIONS(7860), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146555,14 +184272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154369] = 3, + [171239] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4158), 3, + ACTIONS(7459), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4156), 18, + ACTIONS(7457), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146581,14 +184298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154398] = 3, + [171268] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 3, + ACTIONS(7644), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4480), 18, + ACTIONS(7642), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146607,14 +184324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154427] = 3, + [171297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 3, + ACTIONS(7819), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4160), 18, + ACTIONS(7817), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146633,14 +184350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154456] = 3, + [171326] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 3, + ACTIONS(7648), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4192), 18, + ACTIONS(7646), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146659,57 +184376,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154485] = 20, + [171355] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(10579), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(10581), 1, anon_sym_POUND_QMARK, - ACTIONS(5599), 1, + ACTIONS(10583), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5601), 1, + ACTIONS(10585), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5603), 1, + ACTIONS(10587), 1, anon_sym_SQUOTE, - ACTIONS(5605), 1, + ACTIONS(10589), 1, anon_sym_COMMA_AT, - ACTIONS(5607), 1, + ACTIONS(10591), 1, anon_sym_POUND_PLUS, - ACTIONS(5609), 1, + ACTIONS(10593), 1, anon_sym_POUND_DASH, - ACTIONS(5611), 1, + ACTIONS(10595), 1, anon_sym_POUNDC, - ACTIONS(5613), 1, + ACTIONS(10597), 1, anon_sym_POUNDc, - STATE(1219), 1, + STATE(1906), 1, sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1218), 3, + STATE(1904), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154548] = 3, + [171418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 3, + ACTIONS(7660), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4256), 18, + ACTIONS(7658), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146728,14 +184445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154577] = 3, + [171447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 3, + ACTIONS(7531), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4260), 18, + ACTIONS(7529), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146754,14 +184471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154606] = 3, + [171476] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 3, + ACTIONS(7563), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4264), 18, + ACTIONS(7561), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146780,14 +184497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154635] = 3, + [171505] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 3, + ACTIONS(7837), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4268), 18, + ACTIONS(7835), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146806,57 +184523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154664] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(5543), 1, - anon_sym_POUND, - ACTIONS(5559), 1, - anon_sym_POUNDC, - ACTIONS(5561), 1, - anon_sym_POUNDc, - ACTIONS(5615), 1, - anon_sym_POUND_QMARK, - 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, - 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, + [171534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 3, + ACTIONS(7519), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4272), 18, + ACTIONS(7517), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -146875,143 +184549,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154756] = 20, + [171563] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(5575), 1, + ACTIONS(10599), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(10601), 1, anon_sym_POUND_QMARK, - ACTIONS(5579), 1, + ACTIONS(10603), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5591), 1, - anon_sym_POUNDC, - ACTIONS(5593), 1, - anon_sym_POUNDc, - ACTIONS(5629), 1, + ACTIONS(10605), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5631), 1, + ACTIONS(10607), 1, anon_sym_SQUOTE, - ACTIONS(5633), 1, + ACTIONS(10609), 1, anon_sym_COMMA_AT, - ACTIONS(5635), 1, + ACTIONS(10611), 1, anon_sym_POUND_PLUS, - ACTIONS(5637), 1, + ACTIONS(10613), 1, anon_sym_POUND_DASH, - 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, - [154819] = 20, - 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(5503), 1, - anon_sym_POUND, - ACTIONS(5519), 1, + ACTIONS(10615), 1, anon_sym_POUNDC, - ACTIONS(5521), 1, + ACTIONS(10617), 1, anon_sym_POUNDc, - ACTIONS(5639), 1, - anon_sym_POUND_QMARK, - ACTIONS(5641), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5643), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5645), 1, - anon_sym_SQUOTE, - ACTIONS(5647), 1, - anon_sym_COMMA_AT, - ACTIONS(5649), 1, - anon_sym_POUND_PLUS, - ACTIONS(5651), 1, - anon_sym_POUND_DASH, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(1140), 1, + sym__bare_set_lit, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2339), 1, - sym__bare_set_lit, - STATE(2301), 3, + STATE(1139), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154882] = 20, + [171626] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(5653), 1, + ACTIONS(10619), 1, anon_sym_POUND, - ACTIONS(5655), 1, + ACTIONS(10621), 1, anon_sym_POUND_QMARK, - ACTIONS(5657), 1, + ACTIONS(10623), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5659), 1, + ACTIONS(10625), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5661), 1, + ACTIONS(10627), 1, anon_sym_SQUOTE, - ACTIONS(5663), 1, + ACTIONS(10629), 1, anon_sym_COMMA_AT, - ACTIONS(5665), 1, + ACTIONS(10631), 1, anon_sym_POUND_PLUS, - ACTIONS(5667), 1, + ACTIONS(10633), 1, anon_sym_POUND_DASH, - ACTIONS(5669), 1, + ACTIONS(10635), 1, anon_sym_POUNDC, - ACTIONS(5671), 1, + ACTIONS(10637), 1, anon_sym_POUNDc, - STATE(855), 1, + STATE(2604), 1, sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(867), 3, + STATE(2596), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [154945] = 3, + [171689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 3, + ACTIONS(7535), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4300), 18, + ACTIONS(7533), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -147030,100 +184661,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154974] = 20, + [171718] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(5673), 1, + ACTIONS(10517), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_POUND_QMARK, - ACTIONS(5677), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(5679), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(5681), 1, - anon_sym_SQUOTE, - ACTIONS(5683), 1, - anon_sym_COMMA_AT, - ACTIONS(5685), 1, - anon_sym_POUND_PLUS, - ACTIONS(5687), 1, - anon_sym_POUND_DASH, - ACTIONS(5689), 1, + ACTIONS(10531), 1, anon_sym_POUNDC, - ACTIONS(5691), 1, + ACTIONS(10533), 1, anon_sym_POUNDc, - STATE(1781), 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(1783), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155037] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(570), 1, - anon_sym_LPAREN, - ACTIONS(5693), 1, - anon_sym_POUND, - ACTIONS(5695), 1, + ACTIONS(10639), 1, anon_sym_POUND_QMARK, - ACTIONS(5697), 1, + ACTIONS(10641), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5699), 1, + ACTIONS(10643), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5701), 1, + ACTIONS(10645), 1, anon_sym_SQUOTE, - ACTIONS(5703), 1, + ACTIONS(10647), 1, anon_sym_COMMA_AT, - ACTIONS(5705), 1, + ACTIONS(10649), 1, anon_sym_POUND_PLUS, - ACTIONS(5707), 1, + ACTIONS(10651), 1, anon_sym_POUND_DASH, - ACTIONS(5709), 1, - anon_sym_POUNDC, - ACTIONS(5711), 1, - anon_sym_POUNDc, - STATE(1352), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1353), 3, + STATE(2987), 1, + sym__bare_set_lit, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155100] = 3, + [171781] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 3, + ACTIONS(7702), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4244), 18, + ACTIONS(7700), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -147142,179 +184730,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155129] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4390), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(4388), 18, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + [171810] = 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, - [155158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(4436), 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, + ACTIONS(6049), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(10565), 1, + anon_sym_POUND_QMARK, + ACTIONS(10579), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_POUNDC, + ACTIONS(10597), 1, + anon_sym_POUNDc, + ACTIONS(10653), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(10655), 1, anon_sym_POUND_SQUOTE, + ACTIONS(10657), 1, anon_sym_SQUOTE, + ACTIONS(10659), 1, anon_sym_COMMA_AT, + ACTIONS(10661), 1, anon_sym_POUND_PLUS, + ACTIONS(10663), 1, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [155187] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4136), 1, - anon_sym_being, - ACTIONS(5713), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 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, - [155218] = 20, + STATE(1906), 1, + sym__bare_set_lit, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, + aux_sym_list_lit_repeat1, + STATE(2901), 1, + sym__metadata_lit, + STATE(1904), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [171873] = 20, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(5715), 1, + ACTIONS(10665), 1, anon_sym_POUND, - ACTIONS(5717), 1, + ACTIONS(10667), 1, anon_sym_POUND_QMARK, - ACTIONS(5719), 1, + ACTIONS(10669), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5721), 1, + ACTIONS(10671), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5723), 1, + ACTIONS(10673), 1, anon_sym_SQUOTE, - ACTIONS(5725), 1, + ACTIONS(10675), 1, anon_sym_COMMA_AT, - ACTIONS(5727), 1, + ACTIONS(10677), 1, anon_sym_POUND_PLUS, - ACTIONS(5729), 1, + ACTIONS(10679), 1, anon_sym_POUND_DASH, - ACTIONS(5731), 1, + ACTIONS(10681), 1, anon_sym_POUNDC, - ACTIONS(5733), 1, + ACTIONS(10683), 1, anon_sym_POUNDc, - STATE(1043), 1, + STATE(1709), 1, sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1044), 3, + STATE(1708), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155281] = 20, + [171936] = 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(5523), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(10619), 1, anon_sym_POUND, - ACTIONS(5525), 1, + ACTIONS(10621), 1, anon_sym_POUND_QMARK, - ACTIONS(5527), 1, + ACTIONS(10623), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(5539), 1, + ACTIONS(10635), 1, anon_sym_POUNDC, - ACTIONS(5541), 1, + ACTIONS(10637), 1, anon_sym_POUNDc, - ACTIONS(5735), 1, + ACTIONS(10685), 1, anon_sym_POUND_SQUOTE, - ACTIONS(5737), 1, + ACTIONS(10687), 1, anon_sym_SQUOTE, - ACTIONS(5739), 1, + ACTIONS(10689), 1, anon_sym_COMMA_AT, - ACTIONS(5741), 1, + ACTIONS(10691), 1, anon_sym_POUND_PLUS, - ACTIONS(5743), 1, + ACTIONS(10693), 1, anon_sym_POUND_DASH, - STATE(1474), 1, + STATE(2604), 1, sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2234), 1, + STATE(2858), 1, sym_meta_lit, - STATE(2246), 1, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, aux_sym_list_lit_repeat1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(1473), 3, + STATE(2596), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [155344] = 3, + [171999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 3, + ACTIONS(7841), 3, anon_sym_POUND, anon_sym_COLON, anon_sym_POUND_QMARK, - ACTIONS(4412), 18, + ACTIONS(7839), 18, sym__ws, sym_comment, anon_sym_POUND_, @@ -147333,1094 +184885,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155373] = 3, - ACTIONS(47), 1, - sym_block_comment, - 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(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5745), 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(2372), 1, - sym_array_dimension, - STATE(2451), 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, - [155453] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4298), 1, - anon_sym_being, - ACTIONS(4296), 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, - [155481] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4278), 1, - anon_sym_being, - ACTIONS(4276), 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, - [155509] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4518), 1, - anon_sym_being, - ACTIONS(4516), 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, - [155537] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4150), 1, - anon_sym_being, - ACTIONS(4148), 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, - [155565] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4158), 1, - anon_sym_being, - ACTIONS(4156), 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, - [155593] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4262), 1, - anon_sym_being, - ACTIONS(4260), 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, - [155621] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4266), 1, - anon_sym_being, - ACTIONS(4264), 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, - [155649] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4270), 1, - anon_sym_being, - ACTIONS(4268), 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, - [155677] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4246), 1, - anon_sym_being, - ACTIONS(4244), 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, - [155705] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4410), 1, - anon_sym_being, - ACTIONS(4408), 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, - [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(486), 1, - anon_sym_LPAREN, - ACTIONS(742), 1, - anon_sym_LBRACE, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5749), 1, - aux_sym__form_token1, - STATE(1944), 1, - sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2397), 1, - sym_array_dimension, - STATE(2421), 1, - aux_sym_list_lit_repeat1, - ACTIONS(736), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(738), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [155837] = 15, - ACTIONS(47), 1, - sym_block_comment, - 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(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(4218), 1, - anon_sym_being, - ACTIONS(4216), 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, - [155969] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4162), 1, - anon_sym_being, - ACTIONS(4160), 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, - [155997] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4194), 1, - anon_sym_being, - ACTIONS(4192), 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, - [156025] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(718), 1, - anon_sym_LBRACE, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5755), 1, - aux_sym__form_token1, - STATE(1477), 1, - sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2411), 1, - sym_array_dimension, - STATE(2432), 1, - aux_sym_list_lit_repeat1, - ACTIONS(714), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(716), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1451), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [156077] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(792), 1, - anon_sym_LBRACE, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5757), 1, - aux_sym__form_token1, - STATE(1644), 1, - sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2391), 1, - sym_array_dimension, - STATE(2447), 1, - aux_sym_list_lit_repeat1, - ACTIONS(784), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(786), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1746), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [156129] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(488), 1, - anon_sym_LBRACE, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5759), 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(2375), 1, - sym_array_dimension, - STATE(2441), 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, - [156181] = 3, + [172028] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 1, - anon_sym_being, - ACTIONS(4256), 19, + ACTIONS(7742), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7740), 18, 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(570), 1, - anon_sym_LPAREN, - ACTIONS(572), 1, - anon_sym_LBRACE, - ACTIONS(4707), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5761), 1, - aux_sym__form_token1, - STATE(1349), 1, - sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2384), 1, - sym_array_dimension, - STATE(2453), 1, - aux_sym_list_lit_repeat1, - ACTIONS(564), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(566), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1387), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [156261] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4302), 1, - anon_sym_being, - ACTIONS(4300), 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, - [156289] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4274), 1, - anon_sym_being, - ACTIONS(4272), 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, - [156317] = 3, - ACTIONS(47), 1, - sym_block_comment, - 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(4482), 1, - anon_sym_being, - ACTIONS(4480), 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, - [156373] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(832), 1, anon_sym_LBRACE, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - ACTIONS(5763), 1, - aux_sym__form_token1, - STATE(881), 1, - sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2364), 1, - sym_array_dimension, - STATE(2420), 1, - aux_sym_list_lit_repeat1, - ACTIONS(826), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(828), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(928), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [156425] = 3, + 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, + [172057] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 1, - anon_sym_being, - ACTIONS(4412), 19, + ACTIONS(7678), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7676), 18, 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, - [156453] = 3, + 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, + [172086] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 1, - anon_sym_being, - ACTIONS(4428), 19, + ACTIONS(7507), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7505), 18, 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, - [156481] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(678), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(680), 1, anon_sym_LBRACE, - ACTIONS(4707), 1, + 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, + [172115] = 20, + ACTIONS(25), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(27), 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(10517), 1, + anon_sym_POUND, + ACTIONS(10519), 1, + anon_sym_POUND_QMARK, + ACTIONS(10521), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10523), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10525), 1, + anon_sym_SQUOTE, + ACTIONS(10527), 1, + anon_sym_POUND_PLUS, + ACTIONS(10529), 1, + anon_sym_POUND_DASH, + ACTIONS(10531), 1, + anon_sym_POUNDC, + ACTIONS(10533), 1, + anon_sym_POUNDc, + ACTIONS(10695), 1, + anon_sym_COMMA_AT, + STATE(2858), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2859), 1, sym_old_meta_lit, - STATE(2402), 1, - sym_array_dimension, - STATE(2430), 1, + STATE(2876), 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, + STATE(2901), 1, + sym__metadata_lit, + STATE(2987), 1, + sym__bare_set_lit, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [156533] = 3, + [172178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4438), 1, - anon_sym_being, - ACTIONS(4436), 19, + ACTIONS(7463), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7461), 18, 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, - [156561] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(288), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(544), 1, anon_sym_LBRACE, - ACTIONS(4707), 1, + 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, + [172207] = 20, + ACTIONS(25), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(27), 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(10697), 1, + anon_sym_POUND, + ACTIONS(10699), 1, + anon_sym_POUND_QMARK, + ACTIONS(10701), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(10703), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(10705), 1, + anon_sym_SQUOTE, + ACTIONS(10707), 1, + anon_sym_COMMA_AT, + ACTIONS(10709), 1, + anon_sym_POUND_PLUS, + ACTIONS(10711), 1, + anon_sym_POUND_DASH, + ACTIONS(10713), 1, + anon_sym_POUNDC, + ACTIONS(10715), 1, + anon_sym_POUNDc, + STATE(1516), 1, + sym__bare_set_lit, + STATE(2858), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2859), 1, sym_old_meta_lit, - STATE(2412), 1, - sym_array_dimension, - STATE(2440), 1, + STATE(2876), 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, + STATE(2901), 1, + sym__metadata_lit, + STATE(1515), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [156613] = 3, + [172270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 1, - anon_sym_being, - ACTIONS(4328), 19, + ACTIONS(7503), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7501), 18, 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, - [156641] = 3, + 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, + [172299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 1, - anon_sym_being, - ACTIONS(4300), 19, + ACTIONS(7499), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7497), 18, 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, - [156669] = 3, + 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, + [172328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 1, - anon_sym_being, - ACTIONS(4332), 19, + ACTIONS(7487), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(7485), 18, 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, - [156697] = 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_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, + [172357] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 1, - anon_sym_POUND_, - ACTIONS(5769), 2, - sym__ws, - sym_comment, - ACTIONS(5773), 2, + ACTIONS(7483), 3, anon_sym_POUND, + anon_sym_COLON, anon_sym_POUND_QMARK, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5775), 11, + ACTIONS(7481), 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, @@ -148429,126 +185179,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156730] = 11, + [172386] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5777), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10450), 1, + anon_sym_COMMA, + ACTIONS(10719), 1, + anon_sym_POUND_, + STATE(2007), 1, + sym_unquoting_lit, + STATE(2008), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3072), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10717), 2, + sym__ws, + sym_comment, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2849), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [172437] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10450), 1, + anon_sym_COMMA, + ACTIONS(10719), 1, + anon_sym_POUND_, + STATE(2015), 1, + sym_list_lit, + STATE(2016), 1, + sym_unquoting_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3072), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10721), 2, + sym__ws, + sym_comment, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2860), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [172488] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10723), 1, aux_sym_accumulation_verb_token1, - ACTIONS(5781), 1, + ACTIONS(10727), 1, anon_sym_and, - ACTIONS(5783), 1, + ACTIONS(10729), 1, anon_sym_with, - ACTIONS(5785), 1, + ACTIONS(10731), 1, anon_sym_do, - ACTIONS(5789), 1, + ACTIONS(10735), 1, anon_sym_repeat, - ACTIONS(5793), 1, + ACTIONS(10739), 1, anon_sym_else, - ACTIONS(5779), 2, + ACTIONS(10725), 2, anon_sym_for, anon_sym_as, - ACTIONS(5787), 2, + ACTIONS(10733), 2, anon_sym_while, anon_sym_until, - ACTIONS(5795), 3, + ACTIONS(10741), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - ACTIONS(5791), 6, + ACTIONS(10737), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - [156773] = 15, + [172531] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1799), 1, - sym_list_lit, - STATE(1806), 1, + STATE(1986), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2009), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5797), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2224), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156824] = 15, + [172582] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1632), 1, + aux_sym_sym_lit_token1, + ACTIONS(10747), 1, + aux_sym_for_clause_word_token1, + STATE(1969), 1, + sym_sym_lit, + ACTIONS(10745), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [172613] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1658), 1, + STATE(2000), 1, sym_list_lit, - STATE(1659), 1, + STATE(2014), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5801), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2222), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156875] = 6, + [172664] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10749), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(10753), 1, + anon_sym_and, + ACTIONS(10755), 1, + anon_sym_with, + ACTIONS(10757), 1, + anon_sym_do, + ACTIONS(10761), 1, + anon_sym_repeat, + ACTIONS(10765), 1, + anon_sym_else, + ACTIONS(10751), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(10759), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(10767), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + ACTIONS(10763), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + [172707] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 1, + ACTIONS(10772), 1, anon_sym_POUND_, - ACTIONS(5803), 2, - sym__ws, - sym_comment, - ACTIONS(5805), 2, + ACTIONS(7405), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2235), 3, + ACTIONS(10769), 2, + sym__ws, + sym_comment, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5807), 11, + ACTIONS(7407), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -148560,454 +185440,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156908] = 15, + [172740] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1828), 1, - sym_unquoting_lit, - STATE(1829), 1, - sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1981), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [156959] = 15, + [172789] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1830), 1, + STATE(2020), 1, sym_list_lit, - STATE(1833), 1, + STATE(2021), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5811), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2227), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157010] = 15, + [172840] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10775), 1, + aux_sym_sym_lit_token1, + ACTIONS(10779), 1, + aux_sym_for_clause_word_token1, + STATE(2793), 1, + sym_kwd_symbol, + ACTIONS(10777), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [172871] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1756), 1, - sym_unquoting_lit, - STATE(1758), 1, + STATE(2022), 1, sym_list_lit, - STATE(2258), 1, + STATE(2023), 1, + sym_unquoting_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10781), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(2861), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157061] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [172922] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(10785), 1, + anon_sym_POUND_, + ACTIONS(10783), 2, + sym__ws, + sym_comment, + ACTIONS(10787), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2868), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10789), 11, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, - anon_sym_COMMA, - ACTIONS(5799), 1, + 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, + [172955] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10785), 1, anon_sym_POUND_, - STATE(1825), 1, - sym_unquoting_lit, - STATE(1827), 1, - sym_list_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, + ACTIONS(10791), 2, sym__ws, sym_comment, - STATE(1451), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2450), 3, + ACTIONS(10793), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157112] = 15, + ACTIONS(10795), 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, + [172988] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1656), 1, + STATE(1982), 1, sym_list_lit, - STATE(1657), 1, + STATE(1983), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157163] = 15, + [173039] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1574), 1, + STATE(1985), 1, sym_list_lit, - STATE(1576), 1, + STATE(1987), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157214] = 15, + [173090] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1577), 1, + STATE(2024), 1, sym_list_lit, - STATE(1586), 1, + STATE(2025), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5813), 2, + ACTIONS(10797), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2238), 3, + STATE(2863), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157265] = 15, + [173141] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1589), 1, + STATE(1995), 1, sym_list_lit, - STATE(1619), 1, + STATE(1998), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5815), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2230), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157316] = 15, + [173192] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1652), 1, + STATE(2026), 1, sym_list_lit, - STATE(1653), 1, + STATE(2027), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10799), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(2865), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157367] = 15, + [173243] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1638), 1, + STATE(1999), 1, sym_list_lit, - STATE(1639), 1, + STATE(2013), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5817), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2239), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157418] = 15, + [173294] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1640), 1, + STATE(2001), 1, sym_list_lit, - STATE(1641), 1, + STATE(2002), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5819), 2, + ACTIONS(10801), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2226), 3, + STATE(2871), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157469] = 15, + [173345] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1710), 1, + STATE(2003), 1, sym_list_lit, - STATE(1718), 1, + STATE(2004), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5821), 2, + ACTIONS(10803), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2225), 3, + STATE(2855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157520] = 6, + [173396] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 1, + ACTIONS(10785), 1, anon_sym_POUND_, - ACTIONS(5823), 2, + ACTIONS(10805), 2, sym__ws, sym_comment, - ACTIONS(5825), 2, + ACTIONS(10807), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2217), 3, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(5827), 11, + ACTIONS(10809), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -149019,49 +185942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157553] = 6, + [173429] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5771), 1, + ACTIONS(10785), 1, anon_sym_POUND_, - ACTIONS(5769), 2, + ACTIONS(10805), 2, sym__ws, sym_comment, - ACTIONS(5829), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2236), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5831), 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, - [157586] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5836), 1, - anon_sym_POUND_, - ACTIONS(4102), 2, + ACTIONS(10811), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5833), 2, - sym__ws, - sym_comment, - STATE(2236), 3, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4104), 11, + ACTIONS(10813), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -149073,159 +185969,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157619] = 14, + [173462] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10815), 2, sym__ws, sym_comment, - STATE(1770), 2, + STATE(1979), 2, sym_list_lit, sym_unquoting_lit, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(2854), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157668] = 15, + [173511] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1650), 1, + STATE(2018), 1, sym_list_lit, - STATE(1651), 1, + STATE(2019), 1, sym_unquoting_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5809), 2, + ACTIONS(10743), 2, sym__ws, sym_comment, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2450), 3, + STATE(3079), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157719] = 15, + [173562] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5471), 1, + ACTIONS(10450), 1, anon_sym_COMMA, - ACTIONS(5799), 1, + ACTIONS(10719), 1, anon_sym_POUND_, - STATE(1654), 1, + STATE(2010), 1, sym_list_lit, - STATE(1655), 1, + STATE(2034), 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, - 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, - [157770] = 14, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - 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_, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5839), 2, + ACTIONS(10817), 2, sym__ws, sym_comment, - STATE(1734), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1451), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2237), 3, + STATE(2851), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [157819] = 5, + [173613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 1, + ACTIONS(10819), 1, anon_sym_COLON, - ACTIONS(5843), 1, + ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(4466), 2, + ACTIONS(7619), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4464), 14, + ACTIONS(7617), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -149240,42 +186101,17 @@ static const uint16_t ts_small_parse_table[] = { 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(5847), 1, - aux_sym_for_clause_word_token1, - STATE(1796), 1, - sym_sym_lit, - ACTIONS(5845), 15, - 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, - [157879] = 5, + [173643] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 1, + ACTIONS(10819), 1, anon_sym_COLON, - ACTIONS(5843), 1, + ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(4502), 2, + ACTIONS(7718), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4500), 14, + ACTIONS(7716), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -149290,17 +186126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157909] = 5, + [173673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5841), 1, + ACTIONS(10819), 1, anon_sym_COLON, - ACTIONS(5843), 1, + ACTIONS(10821), 1, anon_sym_COLON_COLON, - ACTIONS(4498), 2, + ACTIONS(7455), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4496), 14, + ACTIONS(7453), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -149315,20 +186151,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157939] = 3, + [173703] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5851), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(5849), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(10825), 1, anon_sym_CARET, + ACTIONS(10828), 1, anon_sym_POUND_CARET, + STATE(2858), 1, + sym_meta_lit, + STATE(2859), 1, + sym_old_meta_lit, + STATE(2876), 1, + aux_sym_list_lit_repeat1, + STATE(2901), 1, + sym__metadata_lit, + ACTIONS(10823), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(10831), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -149337,26 +186179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [157964] = 9, + [173740] = 3, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(10835), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5861), 9, + ACTIONS(10833), 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, @@ -149365,13 +186201,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158001] = 3, + [173765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5865), 2, + ACTIONS(10745), 1, + anon_sym_being, + ACTIONS(10747), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173790] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10839), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5863), 15, + ACTIONS(10837), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149387,13 +186245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158026] = 3, + [173815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5869), 2, + ACTIONS(10843), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5867), 15, + ACTIONS(10841), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149409,13 +186267,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158051] = 3, + [173840] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10777), 1, + anon_sym_being, + ACTIONS(10779), 16, + 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_upfrom, + anon_sym_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [173865] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5873), 2, + ACTIONS(10847), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5871), 15, + ACTIONS(10845), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149431,13 +186311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158076] = 3, + [173890] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5877), 2, + ACTIONS(10851), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5875), 15, + ACTIONS(10849), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149453,13 +186333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158101] = 3, + [173915] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5881), 2, + ACTIONS(10855), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5879), 15, + ACTIONS(10853), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149475,13 +186355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158126] = 3, + [173940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5885), 2, + ACTIONS(10859), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5883), 15, + ACTIONS(10857), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149497,15 +186377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158151] = 4, + [173965] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5887), 1, + ACTIONS(10861), 1, aux_sym_num_lit_token2, - ACTIONS(4136), 2, + ACTIONS(7445), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4134), 14, + ACTIONS(7443), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -149520,13 +186400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158178] = 3, + [173992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5891), 2, + ACTIONS(10865), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(5889), 15, + ACTIONS(10863), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -149542,63 +186422,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [158203] = 3, + [174017] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5845), 1, - anon_sym_being, - ACTIONS(5847), 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, - [158227] = 5, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, + aux_sym_char_lit_token1, + ACTIONS(7287), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10867), 1, + aux_sym__form_token1, + STATE(1977), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3007), 1, + sym_array_dimension, + STATE(3102), 1, + aux_sym_list_lit_repeat1, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174062] = 14, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5896), 1, - anon_sym_POUND_, - ACTIONS(5893), 2, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10869), 1, + aux_sym__form_token1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(2996), 1, + sym_list_lit, + STATE(3016), 1, + sym_array_dimension, + STATE(3103), 1, + aux_sym_list_lit_repeat1, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174107] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10871), 1, + aux_sym__form_token1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(2996), 1, + sym_list_lit, + STATE(3027), 1, + sym_array_dimension, + STATE(3071), 1, + aux_sym_list_lit_repeat1, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174152] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, + aux_sym_char_lit_token1, + ACTIONS(7287), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10873), 1, + aux_sym__form_token1, + STATE(1977), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3018), 1, + sym_array_dimension, + STATE(3053), 1, + aux_sym_list_lit_repeat1, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174197] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(7365), 1, + aux_sym_char_lit_token1, + ACTIONS(7367), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10875), 1, + aux_sym__form_token1, + STATE(1556), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3045), 1, + sym_array_dimension, + STATE(3066), 1, + aux_sym_list_lit_repeat1, + STATE(1612), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174242] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(7321), 1, + aux_sym_char_lit_token1, + ACTIONS(7323), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10877), 1, + aux_sym__form_token1, + STATE(2615), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3040), 1, + sym_array_dimension, + STATE(3060), 1, + aux_sym_list_lit_repeat1, + STATE(2648), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174287] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(7341), 1, + aux_sym_char_lit_token1, + ACTIONS(7343), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10879), 1, + aux_sym__form_token1, + STATE(1712), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3038), 1, + sym_array_dimension, + STATE(3090), 1, + aux_sym_list_lit_repeat1, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174332] = 14, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7381), 1, + aux_sym_char_lit_token1, + ACTIONS(7383), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10881), 1, + aux_sym__form_token1, + STATE(1858), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3019), 1, + sym_array_dimension, + STATE(3072), 1, + aux_sym_list_lit_repeat1, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174377] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4795), 1, + anon_sym_LPAREN, + ACTIONS(7353), 1, + aux_sym_char_lit_token1, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10883), 1, + aux_sym__form_token1, + STATE(1459), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3002), 1, + sym_array_dimension, + STATE(3080), 1, + aux_sym_list_lit_repeat1, + STATE(1483), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174422] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(7297), 1, + aux_sym_char_lit_token1, + ACTIONS(7299), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10885), 1, + aux_sym__form_token1, + STATE(1142), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3052), 1, + sym_array_dimension, + STATE(3065), 1, + aux_sym_list_lit_repeat1, + STATE(1190), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174467] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(7309), 1, + aux_sym_char_lit_token1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10887), 1, + aux_sym__form_token1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(2996), 1, + sym_list_lit, + STATE(3035), 1, + sym_array_dimension, + STATE(3075), 1, + aux_sym_list_lit_repeat1, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174512] = 14, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(7393), 1, + aux_sym_char_lit_token1, + ACTIONS(7395), 1, + anon_sym_LBRACE, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10889), 1, + aux_sym__form_token1, + STATE(1016), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3024), 1, + sym_array_dimension, + STATE(3073), 1, + aux_sym_list_lit_repeat1, + STATE(1070), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [174557] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10891), 1, + aux_sym_num_lit_token2, + ACTIONS(7445), 2, + anon_sym_COLON, + aux_sym_sym_lit_token1, + ACTIONS(7443), 11, sym__ws, sym_comment, - STATE(2256), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 8, + 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_POUND_QMARK, + anon_sym_COMMA, + [174581] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10893), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(10895), 12, + 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, - [158253] = 6, + [174603] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4102), 1, + ACTIONS(7405), 1, anon_sym_COLON, - ACTIONS(5902), 1, + ACTIONS(10900), 1, anon_sym_POUND_, - ACTIONS(5899), 2, + ACTIONS(10897), 2, sym__ws, sym_comment, - STATE(2257), 3, + STATE(2902), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4104), 7, + ACTIONS(7407), 7, anon_sym_COLON_COLON, anon_sym_DQUOTE, aux_sym_sym_lit_token1, @@ -149606,51 +186855,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [158281] = 3, + [174631] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5905), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(5907), 12, + ACTIONS(10906), 1, + anon_sym_POUND_, + ACTIONS(10903), 2, + sym__ws, + sym_comment, + STATE(2903), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 8, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, + anon_sym_RPAREN, 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_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [158303] = 4, + [174657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5909), 1, - aux_sym_num_lit_token2, - ACTIONS(4136), 2, + ACTIONS(7776), 1, anon_sym_COLON, + ACTIONS(7774), 12, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, aux_sym_sym_lit_token1, - ACTIONS(4134), 11, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + anon_sym_COMMA, + [174678] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7796), 1, + anon_sym_COLON, + ACTIONS(7794), 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, - [158327] = 3, + [174699] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4506), 1, + ACTIONS(7652), 1, anon_sym_COLON, - ACTIONS(4504), 12, + ACTIONS(7650), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149663,12 +186930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158348] = 3, + [174720] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 1, + ACTIONS(7587), 1, anon_sym_COLON, - ACTIONS(4424), 12, + ACTIONS(7585), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149681,12 +186948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158369] = 3, + [174741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 1, + ACTIONS(7555), 1, anon_sym_COLON, - ACTIONS(4316), 12, + ACTIONS(7553), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149699,12 +186966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158390] = 3, + [174762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 1, + ACTIONS(7694), 1, anon_sym_COLON, - ACTIONS(4312), 12, + ACTIONS(7692), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149717,12 +186984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158411] = 3, + [174783] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 1, + ACTIONS(7559), 1, anon_sym_COLON, - ACTIONS(4316), 12, + ACTIONS(7557), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149735,12 +187002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158432] = 3, + [174804] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 1, + ACTIONS(7848), 1, anon_sym_COLON, - ACTIONS(4312), 12, + ACTIONS(7846), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149753,12 +187020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158453] = 3, + [174825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 1, + ACTIONS(7579), 1, anon_sym_COLON, - ACTIONS(4308), 12, + ACTIONS(7577), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149771,12 +187038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158474] = 3, + [174846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 1, + ACTIONS(7668), 1, anon_sym_COLON, - ACTIONS(4304), 12, + ACTIONS(7666), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149789,12 +187056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158495] = 3, + [174867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 1, + ACTIONS(7599), 1, anon_sym_COLON, - ACTIONS(4228), 12, + ACTIONS(7597), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149807,12 +187074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158516] = 3, + [174888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 1, + ACTIONS(7599), 1, anon_sym_COLON, - ACTIONS(4228), 12, + ACTIONS(7597), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149825,12 +187092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158537] = 3, + [174909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 1, + ACTIONS(7682), 1, anon_sym_COLON, - ACTIONS(4240), 12, + ACTIONS(7680), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149843,12 +187110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158558] = 3, + [174930] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 1, + ACTIONS(7479), 1, anon_sym_COLON, - ACTIONS(4204), 12, + ACTIONS(7477), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149861,12 +187128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158579] = 3, + [174951] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 1, + ACTIONS(7698), 1, anon_sym_COLON, - ACTIONS(4164), 12, + ACTIONS(7696), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149879,32 +187146,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158600] = 5, + [174972] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(7559), 1, + anon_sym_COLON, + ACTIONS(7557), 12, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(5911), 2, + 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, + [174993] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7555), 1, + anon_sym_COLON, + ACTIONS(7553), 12, sym__ws, sym_comment, - STATE(2335), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5827), 7, + 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_POUNDC, - anon_sym_POUNDc, - [158625] = 3, + anon_sym_COMMA, + [175014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 1, + ACTIONS(7686), 1, anon_sym_COLON, - ACTIONS(4484), 12, + ACTIONS(7684), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149917,12 +187200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158646] = 3, + [175035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 1, + ACTIONS(7551), 1, anon_sym_COLON, - ACTIONS(4180), 12, + ACTIONS(7549), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149935,12 +187218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158667] = 3, + [175056] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 1, + ACTIONS(7455), 1, anon_sym_COLON, - ACTIONS(4348), 12, + ACTIONS(7453), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -149953,50 +187236,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158688] = 5, + [175077] = 3, 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, + ACTIONS(10911), 2, anon_sym_COLON, - ACTIONS(4352), 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(10909), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, anon_sym_COMMA, - [158734] = 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, + [175098] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 1, + ACTIONS(7698), 1, anon_sym_COLON, - ACTIONS(4360), 12, + ACTIONS(7696), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150009,12 +187272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158755] = 3, + [175119] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4362), 1, + ACTIONS(7539), 1, anon_sym_COLON, - ACTIONS(4360), 12, + ACTIONS(7537), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150027,12 +187290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158776] = 3, + [175140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 1, + ACTIONS(7694), 1, anon_sym_COLON, - ACTIONS(4372), 12, + ACTIONS(7692), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150045,12 +187308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158797] = 3, + [175161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4494), 1, + ACTIONS(7698), 1, anon_sym_COLON, - ACTIONS(4492), 12, + ACTIONS(7696), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150063,12 +187326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158818] = 3, + [175182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 1, + ACTIONS(7698), 1, anon_sym_COLON, - ACTIONS(4196), 12, + ACTIONS(7696), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150081,33 +187344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158839] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4102), 1, - anon_sym_COLON, - ACTIONS(5920), 1, - anon_sym_POUND_, - ACTIONS(5917), 2, - sym__ws, - sym_comment, - STATE(2284), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 6, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [158866] = 3, + [175203] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 1, + ACTIONS(7722), 1, anon_sym_COLON, - ACTIONS(4200), 12, + ACTIONS(7720), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150120,12 +187362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158887] = 3, + [175224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4466), 1, + ACTIONS(7730), 1, anon_sym_COLON, - ACTIONS(4464), 12, + ACTIONS(7728), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150138,12 +187380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158908] = 3, + [175245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4374), 1, + ACTIONS(7527), 1, anon_sym_COLON, - ACTIONS(4372), 12, + ACTIONS(7525), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150156,12 +187398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158929] = 3, + [175266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 1, + ACTIONS(7734), 1, anon_sym_COLON, - ACTIONS(4392), 12, + ACTIONS(7732), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150174,12 +187416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158950] = 3, + [175287] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4398), 1, + ACTIONS(7636), 1, anon_sym_COLON, - ACTIONS(4396), 12, + ACTIONS(7634), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150192,12 +187434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158971] = 3, + [175308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4406), 1, + ACTIONS(7632), 1, anon_sym_COLON, - ACTIONS(4404), 12, + ACTIONS(7630), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150210,12 +187452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [158992] = 3, + [175329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4474), 1, + ACTIONS(7615), 1, anon_sym_COLON, - ACTIONS(4472), 12, + ACTIONS(7613), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150228,12 +187470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159013] = 3, + [175350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4142), 1, + ACTIONS(7738), 1, anon_sym_COLON, - ACTIONS(4140), 12, + ACTIONS(7736), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150246,12 +187488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159034] = 3, + [175371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(7746), 1, anon_sym_COLON, - ACTIONS(4144), 12, + ACTIONS(7744), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150264,12 +187506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159055] = 3, + [175392] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 1, + ACTIONS(7784), 1, anon_sym_COLON, - ACTIONS(4416), 12, + ACTIONS(7782), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150282,12 +187524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159076] = 3, + [175413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 1, + ACTIONS(7603), 1, anon_sym_COLON, - ACTIONS(4420), 12, + ACTIONS(7601), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150300,12 +187542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159097] = 3, + [175434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 1, + ACTIONS(7575), 1, anon_sym_COLON, - ACTIONS(4172), 12, + ACTIONS(7573), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150318,12 +187560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159118] = 3, + [175455] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(4176), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150336,12 +187578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159139] = 3, + [175476] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 1, + ACTIONS(7746), 1, anon_sym_COLON, - ACTIONS(4432), 12, + ACTIONS(7744), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150354,12 +187596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159160] = 3, + [175497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4442), 1, + ACTIONS(7761), 1, anon_sym_COLON, - ACTIONS(4440), 12, + ACTIONS(7759), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150372,12 +187614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159181] = 3, + [175518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, + ACTIONS(7726), 1, anon_sym_COLON, - ACTIONS(4144), 12, + ACTIONS(7724), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150390,12 +187632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159202] = 3, + [175539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(4320), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150408,12 +187650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159223] = 3, + [175560] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 1, + ACTIONS(7754), 1, anon_sym_COLON, - ACTIONS(4168), 12, + ACTIONS(7752), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150426,12 +187668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159244] = 3, + [175581] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 1, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(4184), 12, + ACTIONS(7831), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150444,12 +187686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159265] = 3, + [175602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 1, + ACTIONS(7788), 1, anon_sym_COLON, - ACTIONS(4188), 12, + ACTIONS(7786), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150462,12 +187704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159286] = 3, + [175623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 1, + ACTIONS(7796), 1, anon_sym_COLON, - ACTIONS(4432), 12, + ACTIONS(7794), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150480,12 +187722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159307] = 3, + [175644] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 1, + ACTIONS(7527), 1, anon_sym_COLON, - ACTIONS(4208), 12, + ACTIONS(7525), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150498,12 +187740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159328] = 3, + [175665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 1, + ACTIONS(7788), 1, anon_sym_COLON, - ACTIONS(4212), 12, + ACTIONS(7786), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150516,12 +187758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159349] = 3, + [175686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4418), 1, + ACTIONS(7815), 1, anon_sym_COLON, - ACTIONS(4416), 12, + ACTIONS(7813), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150534,12 +187776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159370] = 3, + [175707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4422), 1, + ACTIONS(7672), 1, anon_sym_COLON, - ACTIONS(4420), 12, + ACTIONS(7670), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150552,12 +187794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159391] = 3, + [175728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 1, + ACTIONS(7780), 1, anon_sym_COLON, - ACTIONS(4220), 12, + ACTIONS(7778), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150570,12 +187812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159412] = 3, + [175749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 1, + ACTIONS(7792), 1, anon_sym_COLON, - ACTIONS(4224), 12, + ACTIONS(7790), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150588,12 +187830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159433] = 3, + [175770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 1, + ACTIONS(7738), 1, anon_sym_COLON, - ACTIONS(4232), 12, + ACTIONS(7736), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150606,12 +187848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159454] = 3, + [175791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 1, + ACTIONS(7768), 1, anon_sym_COLON, - ACTIONS(4236), 12, + ACTIONS(7766), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150624,12 +187866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159475] = 3, + [175812] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 1, + ACTIONS(7746), 1, anon_sym_COLON, - ACTIONS(4248), 12, + ACTIONS(7744), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150642,12 +187884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159496] = 3, + [175833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 1, + ACTIONS(7640), 1, anon_sym_COLON, - ACTIONS(4252), 12, + ACTIONS(7638), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150660,12 +187902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159517] = 3, + [175854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 1, + ACTIONS(7656), 1, anon_sym_COLON, - ACTIONS(4432), 12, + ACTIONS(7654), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150678,12 +187920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159538] = 3, + [175875] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4434), 1, + ACTIONS(7628), 1, anon_sym_COLON, - ACTIONS(4432), 12, + ACTIONS(7626), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150696,12 +187938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159559] = 3, + [175896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4446), 1, + ACTIONS(7611), 1, anon_sym_COLON, - ACTIONS(4444), 12, + ACTIONS(7609), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150714,12 +187956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159580] = 3, + [175917] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4450), 1, + ACTIONS(7567), 1, anon_sym_COLON, - ACTIONS(4448), 12, + ACTIONS(7565), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150732,12 +187974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159601] = 3, + [175938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4454), 1, + ACTIONS(7690), 1, anon_sym_COLON, - ACTIONS(4452), 12, + ACTIONS(7688), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150750,12 +187992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159622] = 3, + [175959] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4458), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(4456), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150768,12 +188010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159643] = 3, + [175980] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(7746), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(7744), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150786,84 +188028,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159664] = 3, + [176001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4382), 1, - anon_sym_COLON, - ACTIONS(4380), 12, - sym__ws, - sym_comment, + ACTIONS(10915), 1, 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, - [159685] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4378), 1, - anon_sym_COLON, - ACTIONS(4376), 12, + ACTIONS(10913), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2969), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10789), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [159706] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4366), 1, - anon_sym_COLON, - ACTIONS(4364), 12, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(10917), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2903), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10809), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [159727] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176051] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, - anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(10917), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2903), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10813), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [159748] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4358), 1, + ACTIONS(7491), 1, anon_sym_COLON, - ACTIONS(4356), 12, + ACTIONS(7489), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150876,48 +188106,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159769] = 3, + [176097] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5925), 2, - anon_sym_COLON, - 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, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(10919), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, - aux_sym_sym_lit_token1, + STATE(2970), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(10795), 7, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - anon_sym_COMMA, - [159811] = 3, + anon_sym_POUNDC, + anon_sym_POUNDc, + [176122] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 1, + ACTIONS(7467), 1, anon_sym_COLON, - ACTIONS(4336), 12, + ACTIONS(7465), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150930,12 +188144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159832] = 3, + [176143] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(7471), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(7469), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150948,12 +188162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159853] = 3, + [176164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, + ACTIONS(7750), 1, anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(7748), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150966,126 +188180,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [159874] = 5, + [176185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5933), 1, - anon_sym_STAR, - ACTIONS(5929), 2, + ACTIONS(10923), 2, anon_sym_COLON, anon_sym_AT, - ACTIONS(5931), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5927), 6, + ACTIONS(10921), 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, - [159899] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4326), 1, - anon_sym_COLON, - ACTIONS(4324), 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, - [159920] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(5935), 2, - sym__ws, - sym_comment, - STATE(2256), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5775), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [159945] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(5935), 2, - sym__ws, - sym_comment, - STATE(2256), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(5831), 7, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [159970] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4490), 1, - anon_sym_COLON, - ACTIONS(4488), 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, - [159991] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4458), 1, - anon_sym_COLON, - ACTIONS(4456), 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, - [160012] = 3, + [176206] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 1, + ACTIONS(7491), 1, anon_sym_COLON, - ACTIONS(4280), 12, + ACTIONS(7489), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151098,30 +188216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160033] = 3, + [176227] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4146), 1, - anon_sym_COLON, - ACTIONS(4144), 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, - [160054] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(7754), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(7752), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151134,12 +188234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160075] = 3, + [176248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, + ACTIONS(7475), 1, anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(7473), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151152,12 +188252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160096] = 3, + [176269] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4462), 1, + ACTIONS(7547), 1, anon_sym_COLON, - ACTIONS(4460), 12, + ACTIONS(7545), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151170,12 +188270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160117] = 3, + [176290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4478), 1, + ACTIONS(7776), 1, anon_sym_COLON, - ACTIONS(4476), 12, + ACTIONS(7774), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151188,12 +188288,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160138] = 3, + [176311] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10931), 1, + anon_sym_STAR, + ACTIONS(10927), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(10929), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(10925), 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, + [176336] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4486), 1, + ACTIONS(7776), 1, anon_sym_COLON, - ACTIONS(4484), 12, + ACTIONS(7774), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151206,30 +188326,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160159] = 3, + [176357] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5939), 2, + ACTIONS(7405), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(5937), 11, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, + ACTIONS(10936), 1, + anon_sym_POUND_, + ACTIONS(10933), 2, + sym__ws, + sym_comment, + STATE(2984), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 6, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, 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, - [160180] = 3, + [176384] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4370), 1, + ACTIONS(7511), 1, anon_sym_COLON, - ACTIONS(4368), 12, + ACTIONS(7509), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151242,12 +188365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160201] = 3, + [176405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4154), 1, + ACTIONS(7515), 1, anon_sym_COLON, - ACTIONS(4152), 12, + ACTIONS(7513), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151260,12 +188383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160222] = 3, + [176426] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 1, + ACTIONS(7543), 1, anon_sym_COLON, - ACTIONS(4288), 12, + ACTIONS(7541), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151278,12 +188401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160243] = 3, + [176447] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 1, + ACTIONS(7826), 1, anon_sym_COLON, - ACTIONS(4284), 12, + ACTIONS(7824), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151296,12 +188419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160264] = 3, + [176468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 1, + ACTIONS(7772), 1, anon_sym_COLON, - ACTIONS(4292), 12, + ACTIONS(7770), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151314,12 +188437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160285] = 3, + [176489] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 1, + ACTIONS(7706), 1, anon_sym_COLON, - ACTIONS(4508), 12, + ACTIONS(7704), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151332,12 +188455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160306] = 3, + [176510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 1, + ACTIONS(7710), 1, anon_sym_COLON, - ACTIONS(4292), 12, + ACTIONS(7708), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151350,12 +188473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160327] = 3, + [176531] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 1, + ACTIONS(7682), 1, anon_sym_COLON, - ACTIONS(4508), 12, + ACTIONS(7680), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151368,12 +188491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160348] = 3, + [176552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4426), 1, + ACTIONS(7780), 1, anon_sym_COLON, - ACTIONS(4424), 12, + ACTIONS(7778), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151386,12 +188509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160369] = 3, + [176573] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 1, + ACTIONS(7523), 1, anon_sym_COLON, - ACTIONS(4400), 12, + ACTIONS(7521), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151404,12 +188527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160390] = 3, + [176594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 1, + ACTIONS(7776), 1, anon_sym_COLON, - ACTIONS(4508), 12, + ACTIONS(7774), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151422,12 +188545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160411] = 3, + [176615] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4402), 1, + ACTIONS(7527), 1, anon_sym_COLON, - ACTIONS(4400), 12, + ACTIONS(7525), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151440,12 +188563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160432] = 3, + [176636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4346), 1, + ACTIONS(7591), 1, anon_sym_COLON, - ACTIONS(4344), 12, + ACTIONS(7589), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151458,12 +188581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160453] = 3, + [176657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4510), 1, + ACTIONS(7591), 1, anon_sym_COLON, - ACTIONS(4508), 12, + ACTIONS(7589), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151476,12 +188599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [160474] = 3, + [176678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5941), 1, + ACTIONS(10939), 1, aux_sym_num_lit_token2, - ACTIONS(4134), 11, + ACTIONS(7443), 11, sym__ws, sym_comment, anon_sym_POUND_, @@ -151493,551 +188616,590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - [160494] = 8, + [176698] = 8, ACTIONS(47), 1, sym_block_comment, - 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_LBRACE, - anon_sym_POUND_QMARK, - anon_sym_POUNDC, - anon_sym_POUNDc, - [160523] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1039), 1, + STATE(1437), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2422), 1, + STATE(3080), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1073), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160552] = 10, + [176727] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10943), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3110), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4787), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1499), 2, + sym_num_lit, + sym_complex_num_lit, + [176760] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(856), 1, + STATE(1456), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2420), 1, + STATE(3080), 1, aux_sym_list_lit_repeat1, - STATE(928), 3, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160585] = 10, + [176793] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(10945), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(10948), 1, anon_sym_POUND_CARET, - ACTIONS(5951), 1, - aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2471), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - ACTIONS(514), 2, + ACTIONS(10831), 5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(2300), 2, - sym_num_lit, - sym_complex_num_lit, - [160618] = 8, + [176822] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + STATE(1964), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2347), 1, - sym_list_lit, - STATE(2436), 1, + STATE(3102), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2282), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160647] = 4, + [176851] = 10, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [160668] = 8, + ACTIONS(10951), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3117), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5061), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2932), 2, + sym_num_lit, + sym_complex_num_lit, + [176884] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2347), 1, + STATE(2994), 1, sym_list_lit, - STATE(2441), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160697] = 8, + [176913] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1793), 1, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(1974), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2447), 1, + STATE(3102), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1746), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160726] = 8, + [176946] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(880), 1, + STATE(1143), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2420), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(928), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160755] = 8, + [176975] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10953), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2347), 1, - sym_list_lit, - STATE(2451), 1, + STATE(3114), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160784] = 10, + ACTIONS(129), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(2598), 2, + sym_num_lit, + sym_complex_num_lit, + [177008] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + ACTIONS(10955), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2350), 1, - sym_list_lit, - STATE(2451), 1, + STATE(3113), 1, aux_sym_list_lit_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160817] = 10, + ACTIONS(2781), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1471), 2, + sym_num_lit, + sym_complex_num_lit, + [177041] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5957), 1, + ACTIONS(10957), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2470), 1, + STATE(3117), 1, aux_sym_list_lit_repeat1, - ACTIONS(598), 2, + ACTIONS(5061), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1374), 2, + STATE(2932), 2, sym_num_lit, sym_complex_num_lit, - [160850] = 8, + [177074] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2911), 1, + sym_list_lit, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2297), 1, - sym_list_lit, - STATE(2451), 1, + STATE(3071), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2282), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [160879] = 10, + [177103] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + ACTIONS(10959), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2350), 1, - sym_list_lit, - STATE(2441), 1, + STATE(3115), 1, aux_sym_list_lit_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [160912] = 10, + ACTIONS(1664), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1898), 2, + sym_num_lit, + sym_complex_num_lit, + [177136] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5959), 1, + ACTIONS(10961), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2467), 1, + STATE(3112), 1, aux_sym_list_lit_repeat1, - ACTIONS(242), 2, + ACTIONS(232), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1061), 2, + STATE(1050), 2, sym_num_lit, sym_complex_num_lit, - [160945] = 10, + [177169] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5961), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2464), 1, + STATE(3424), 1, aux_sym_list_lit_repeat1, - ACTIONS(706), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1199), 2, + STATE(1874), 2, sym_num_lit, sym_complex_num_lit, - [160978] = 8, + [177202] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1478), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(2985), 1, + sym_list_lit, + STATE(3103), 1, + aux_sym_list_lit_repeat1, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177235] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1976), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3053), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1451), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161007] = 8, + [177264] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1836), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(1974), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2440), 1, + STATE(3053), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1800), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161036] = 4, + [177297] = 10, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - 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, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [161057] = 10, + STATE(1855), 1, + sym_list_lit, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3072), 1, + aux_sym_list_lit_repeat1, + STATE(1877), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177330] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(2994), 1, + sym_list_lit, + STATE(3103), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10941), 3, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - ACTIONS(5963), 1, - aux_sym_num_lit_token1, - STATE(2258), 1, + anon_sym_LPAREN, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177359] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1964), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2758), 1, + STATE(3053), 1, aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1464), 2, - sym_num_lit, - sym_complex_num_lit, - [161090] = 8, + ACTIONS(10941), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1892), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177388] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1348), 1, + STATE(1015), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2453), 1, + STATE(3073), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1387), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161119] = 10, + [177417] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5965), 1, + ACTIONS(10965), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2466), 1, + STATE(3114), 1, aux_sym_list_lit_repeat1, - ACTIONS(818), 2, + ACTIONS(129), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1775), 2, + STATE(2598), 2, sym_num_lit, sym_complex_num_lit, - [161152] = 10, + [177450] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1346), 1, + STATE(1012), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2453), 1, + STATE(3073), 1, aux_sym_list_lit_repeat1, - STATE(1387), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161185] = 8, + [177483] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(828), 1, - sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2420), 1, - aux_sym_list_lit_repeat1, - 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, - [161214] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1836), 1, + STATE(2911), 1, sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2434), 1, + STATE(3103), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161243] = 4, + [177512] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5953), 1, + ACTIONS(10967), 1, anon_sym_COLON, - ACTIONS(5955), 1, + ACTIONS(10969), 1, anon_sym_COLON_COLON, - ACTIONS(4464), 9, + ACTIONS(7453), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152047,609 +189209,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [161264] = 10, + [177533] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5967), 1, - aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2469), 1, + STATE(2985), 1, + sym_list_lit, + STATE(3071), 1, aux_sym_list_lit_repeat1, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1813), 2, - sym_num_lit, - sym_complex_num_lit, - [161297] = 8, + STATE(2991), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177566] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + STATE(1741), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2297), 1, + STATE(3090), 1, + aux_sym_list_lit_repeat1, + ACTIONS(10941), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1676), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177595] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1126), 1, sym_list_lit, - STATE(2441), 1, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3073), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2282), 3, + STATE(1070), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161326] = 10, + [177624] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5969), 1, + ACTIONS(10971), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2468), 1, + STATE(3424), 1, aux_sym_list_lit_repeat1, - ACTIONS(768), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1933), 2, + STATE(1874), 2, sym_num_lit, sym_complex_num_lit, - [161359] = 10, + [177657] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - STATE(1647), 1, - sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2447), 1, - aux_sym_list_lit_repeat1, - STATE(1746), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161392] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1786), 1, + STATE(2994), 1, sym_list_lit, - STATE(2258), 1, - sym__metadata_lit, - STATE(2273), 1, - sym_meta_lit, - STATE(2277), 1, - sym_old_meta_lit, - STATE(2440), 1, + STATE(3075), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1800), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161421] = 8, + [177686] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1645), 1, + STATE(1822), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2447), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1746), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161450] = 8, + [177715] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1786), 1, + STATE(1849), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2434), 1, + STATE(3072), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1800), 3, + STATE(1877), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161479] = 10, + [177744] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5971), 1, + ACTIONS(10973), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2465), 1, + STATE(3115), 1, aux_sym_list_lit_repeat1, - ACTIONS(99), 2, + ACTIONS(1664), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(820), 2, + STATE(1898), 2, sym_num_lit, sym_complex_num_lit, - [161512] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1945), 1, - sym_list_lit, - 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(5949), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1924), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161541] = 10, + [177777] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1947), 1, - sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(2985), 1, + sym_list_lit, + STATE(3075), 1, aux_sym_list_lit_repeat1, - STATE(1924), 3, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161574] = 8, + [177810] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1315), 1, + STATE(1713), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2453), 1, + STATE(3090), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1387), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161603] = 8, + [177839] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1965), 1, + STATE(1540), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2421), 1, + STATE(3066), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1924), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161632] = 10, + [177868] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(6225), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5973), 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(2758), 1, - aux_sym_list_lit_repeat1, - ACTIONS(57), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1464), 2, - sym_num_lit, - sym_complex_num_lit, - [161665] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1221), 1, + STATE(1715), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2430), 1, + STATE(3090), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1174), 3, + STATE(1676), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161694] = 10, + [177901] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(10967), 1, + anon_sym_COLON, + ACTIONS(10969), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 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, + [177922] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1224), 1, + STATE(2644), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2430), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - STATE(1174), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161727] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - 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, + [177955] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1180), 1, + STATE(2628), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2430), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1174), 3, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161789] = 10, + [177984] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(10967), 1, + anon_sym_COLON, + ACTIONS(10969), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(4709), 1, anon_sym_POUND_CARET, - STATE(1838), 1, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [178005] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(2613), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2434), 1, + STATE(3060), 1, aux_sym_list_lit_repeat1, - STATE(1800), 3, + ACTIONS(10941), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(2648), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161822] = 8, + [178034] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1499), 1, + STATE(1165), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1451), 3, + STATE(1190), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161851] = 10, + [178063] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(1037), 1, + STATE(1520), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2422), 1, + STATE(3066), 1, aux_sym_list_lit_repeat1, - STATE(1073), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161884] = 8, + [178096] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1016), 1, + STATE(1976), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2422), 1, + STATE(3102), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1073), 3, + STATE(1892), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [161913] = 10, + [178125] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + ACTIONS(10975), 1, + aux_sym_num_lit_token1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2350), 1, - sym_list_lit, - STATE(2436), 1, + STATE(3111), 1, aux_sym_list_lit_repeat1, - STATE(2282), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [161946] = 10, + ACTIONS(760), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + STATE(1182), 2, + sym_num_lit, + sym_complex_num_lit, + [178158] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5977), 1, + ACTIONS(10977), 1, aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2468), 1, + STATE(3116), 1, aux_sym_list_lit_repeat1, - ACTIONS(768), 2, + ACTIONS(6251), 2, anon_sym_POUNDC, anon_sym_POUNDc, - STATE(1933), 2, + STATE(1689), 2, sym_num_lit, sym_complex_num_lit, - [161979] = 10, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178191] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - STATE(1480), 1, - sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2911), 1, + sym_list_lit, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2432), 1, + STATE(3075), 1, aux_sym_list_lit_repeat1, - STATE(1451), 3, + ACTIONS(10941), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(2991), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162012] = 10, + [178220] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_CARET, - ACTIONS(4709), 1, - anon_sym_POUND_CARET, - STATE(1838), 1, + STATE(1458), 1, sym_list_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2440), 1, + STATE(3080), 1, aux_sym_list_lit_repeat1, - STATE(1800), 3, + ACTIONS(10941), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1483), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162045] = 8, + [178249] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2258), 1, + STATE(1518), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2297), 1, - sym_list_lit, - STATE(2436), 1, + STATE(3066), 1, aux_sym_list_lit_repeat1, - ACTIONS(5949), 3, + ACTIONS(10941), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2282), 3, + STATE(1612), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162074] = 10, + [178278] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5979), 1, - aux_sym_num_lit_token1, - STATE(2258), 1, + STATE(1145), 1, + sym_list_lit, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2469), 1, + STATE(3065), 1, aux_sym_list_lit_repeat1, - ACTIONS(318), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - STATE(1813), 2, - sym_num_lit, - sym_complex_num_lit, - [162107] = 3, + STATE(1190), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178311] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(1904), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178341] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4430), 1, + ACTIONS(7503), 1, anon_sym_COLON, - ACTIONS(4428), 9, + ACTIONS(7501), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152659,12 +189803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162125] = 3, + [178359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 1, + ACTIONS(7648), 1, anon_sym_COLON, - ACTIONS(4332), 9, + ACTIONS(7646), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152674,12 +189818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162143] = 3, + [178377] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4410), 1, + ACTIONS(7803), 1, anon_sym_COLON, - ACTIONS(4408), 9, + ACTIONS(7801), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152689,12 +189833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162161] = 3, + [178395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 1, + ACTIONS(7862), 1, anon_sym_COLON, - ACTIONS(4276), 9, + ACTIONS(7860), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152704,92 +189848,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162179] = 5, + [178413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5984), 1, - anon_sym_POUND_, - ACTIONS(5981), 2, + ACTIONS(7571), 1, + anon_sym_COLON, + ACTIONS(7569), 9, sym__ws, sym_comment, - 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(830), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, 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(867), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162231] = 9, + anon_sym_LPAREN, + anon_sym_COMMA, + [178431] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(7607), 1, + anon_sym_COLON, + ACTIONS(7605), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, 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(1941), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162261] = 9, + anon_sym_LPAREN, + anon_sym_COMMA, + [178449] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(1044), 3, + STATE(2596), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162291] = 3, + [178479] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4162), 1, + ACTIONS(7563), 1, anon_sym_COLON, - ACTIONS(4160), 9, + ACTIONS(7561), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152799,12 +189914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162309] = 3, + [178497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 1, + ACTIONS(7595), 1, anon_sym_COLON, - ACTIONS(4244), 9, + ACTIONS(7593), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152814,12 +189929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162327] = 3, + [178515] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4482), 1, + ACTIONS(7583), 1, anon_sym_COLON, - ACTIONS(4480), 9, + ACTIONS(7581), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152829,12 +189944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162345] = 3, + [178533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 1, + ACTIONS(7531), 1, anon_sym_COLON, - ACTIONS(4192), 9, + ACTIONS(7529), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152844,12 +189959,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162363] = 3, + [178551] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(1139), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178581] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(1515), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178611] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 1, + ACTIONS(7531), 1, anon_sym_COLON, - ACTIONS(4256), 9, + ACTIONS(7529), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152859,12 +190016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162381] = 3, + [178629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 1, + ACTIONS(7819), 1, anon_sym_COLON, - ACTIONS(4268), 9, + ACTIONS(7817), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152874,12 +190031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162399] = 3, + [178647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4518), 1, + ACTIONS(7519), 1, anon_sym_COLON, - ACTIONS(4516), 9, + ACTIONS(7517), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152889,33 +190046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162417] = 9, - ACTIONS(47), 1, - sym_block_comment, - 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, + [178665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4150), 1, + ACTIONS(7495), 1, anon_sym_COLON, - ACTIONS(4148), 9, + ACTIONS(7493), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152925,69 +190061,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162465] = 9, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178683] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(1473), 3, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162495] = 3, + [178713] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4386), 1, - anon_sym_COLON, - ACTIONS(4384), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(8099), 1, anon_sym_CARET, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [162513] = 9, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(1862), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178743] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(1831), 3, + STATE(1022), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162543] = 3, + [178773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 1, + ACTIONS(7678), 1, anon_sym_COLON, - ACTIONS(4272), 9, + ACTIONS(7676), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152997,125 +190139,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162561] = 9, + [178791] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(2301), 3, + STATE(2980), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162591] = 8, + [178821] = 4, 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, - ACTIONS(5987), 2, + ACTIONS(10979), 1, 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(10981), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 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, + [178841] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 1, + ACTIONS(10979), 1, anon_sym_COLON, - ACTIONS(4216), 9, + ACTIONS(10981), 1, + anon_sym_COLON_COLON, + ACTIONS(7716), 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, - [162637] = 3, + [178861] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 1, + ACTIONS(10979), 1, anon_sym_COLON, - ACTIONS(4328), 9, + ACTIONS(10981), 1, + anon_sym_COLON_COLON, + ACTIONS(7617), 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, - [162655] = 9, + [178881] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(10986), 1, + anon_sym_POUND_, + ACTIONS(10983), 2, + sym__ws, + sym_comment, + STATE(3079), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 4, 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(1831), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162685] = 9, + anon_sym_LPAREN, + anon_sym_COMMA, + [178903] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(2301), 3, + STATE(1462), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162715] = 3, + [178933] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4390), 1, + ACTIONS(7742), 1, anon_sym_COLON, - ACTIONS(4388), 9, + ACTIONS(7740), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153125,12 +190261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162733] = 3, + [178951] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4414), 1, + ACTIONS(7499), 1, anon_sym_COLON, - ACTIONS(4412), 9, + ACTIONS(7497), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153140,12 +190276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162751] = 3, + [178969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 1, + ACTIONS(7487), 1, anon_sym_COLON, - ACTIONS(4260), 9, + ACTIONS(7485), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153155,12 +190291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162769] = 3, + [178987] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4158), 1, + ACTIONS(7664), 1, anon_sym_COLON, - ACTIONS(4156), 9, + ACTIONS(7662), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153170,12 +190306,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162787] = 3, + [179005] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10989), 1, + aux_sym_num_lit_token1, + ACTIONS(10994), 1, + anon_sym_SQUOTE, + ACTIONS(10997), 1, + anon_sym_COMMA, + ACTIONS(10992), 2, + anon_sym_COLON, + anon_sym_AT, + STATE(3085), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + ACTIONS(11000), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [179031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 1, + ACTIONS(7660), 1, anon_sym_COLON, - ACTIONS(4300), 9, + ACTIONS(7658), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153185,33 +190340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162805] = 9, + [179049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 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(1783), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162835] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4438), 1, + ACTIONS(7451), 1, anon_sym_COLON, - ACTIONS(4436), 9, + ACTIONS(7449), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153221,12 +190355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162853] = 3, + [179067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4514), 1, + ACTIONS(7644), 1, anon_sym_COLON, - ACTIONS(4512), 9, + ACTIONS(7642), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153236,103 +190370,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [162871] = 5, + [179085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5998), 1, - anon_sym_POUND_, - ACTIONS(5995), 2, + ACTIONS(7852), 1, + anon_sym_COLON, + ACTIONS(7850), 9, sym__ws, sym_comment, - STATE(2450), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4104), 4, + 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, - [162893] = 9, + [179103] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - STATE(2301), 3, + STATE(1708), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [162923] = 4, + [179133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6001), 1, + ACTIONS(7837), 1, anon_sym_COLON, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(4464), 8, + ACTIONS(7835), 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, - [162943] = 9, + [179151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(7702), 1, + anon_sym_COLON, + ACTIONS(7700), 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(4707), 1, + anon_sym_COMMA, + [179169] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7463), 1, + anon_sym_COLON, + ACTIONS(7461), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, 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(1353), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [162973] = 4, + anon_sym_LPAREN, + anon_sym_COMMA, + [179187] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6001), 1, + ACTIONS(11005), 1, + anon_sym_POUND_, + ACTIONS(11002), 2, + sym__ws, + sym_comment, + STATE(3094), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(7407), 4, + aux_sym_num_lit_token1, anon_sym_COLON, - ACTIONS(6003), 1, + anon_sym_cl, + anon_sym_into, + [179209] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7507), 1, + anon_sym_COLON, + ACTIONS(7505), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(4496), 8, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [179227] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7483), 1, + anon_sym_COLON, + ACTIONS(7481), 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, - [162993] = 3, + [179245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 1, + ACTIONS(7841), 1, anon_sym_COLON, - ACTIONS(4264), 9, + ACTIONS(7839), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153342,12 +190513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [163011] = 3, + [179263] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 1, + ACTIONS(7535), 1, anon_sym_COLON, - ACTIONS(4300), 9, + ACTIONS(7533), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153357,12 +190528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [163029] = 3, + [179281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 1, + ACTIONS(7714), 1, anon_sym_COLON, - ACTIONS(4296), 9, + ACTIONS(7712), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153372,17678 +190543,18217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [163047] = 4, + [179299] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6001), 1, + ACTIONS(7459), 1, anon_sym_COLON, - ACTIONS(6003), 1, - anon_sym_COLON_COLON, - ACTIONS(4500), 8, + ACTIONS(7457), 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, - [163067] = 7, + [179317] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6005), 1, + ACTIONS(8436), 1, aux_sym_num_lit_token1, - ACTIONS(6010), 1, + ACTIONS(8444), 1, anon_sym_SQUOTE, - ACTIONS(6013), 1, + ACTIONS(11010), 1, anon_sym_COMMA, - ACTIONS(6008), 2, + ACTIONS(11014), 1, + aux_sym_format_directive_type_token11, + ACTIONS(11008), 2, anon_sym_COLON, anon_sym_AT, - STATE(2459), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(6016), 3, + ACTIONS(11012), 2, anon_sym_AT_COLON, anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [163093] = 10, + STATE(3085), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [179345] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(1634), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(1904), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179375] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + STATE(2980), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [179405] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(6018), 1, + ACTIONS(11016), 1, anon_sym_POUND_QMARK, - STATE(2249), 1, + STATE(2884), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163124] = 10, + [179436] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11020), 1, + anon_sym_POUND_, + ACTIONS(11022), 1, + anon_sym_COLON, + ACTIONS(11024), 1, + anon_sym_cl, + ACTIONS(11026), 1, + anon_sym_into, + ACTIONS(11018), 2, + sym__ws, + sym_comment, + STATE(3094), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179461] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5461), 1, + ACTIONS(10440), 1, anon_sym_LBRACE, - ACTIONS(6020), 1, + ACTIONS(11028), 1, anon_sym_POUND_QMARK, - STATE(2249), 1, + STATE(2884), 1, sym__bare_map_lit, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163155] = 6, + [179492] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(11020), 1, + anon_sym_POUND_, + ACTIONS(11030), 1, + anon_sym_COLON, + ACTIONS(11032), 1, + anon_sym_cl, + ACTIONS(11034), 1, + anon_sym_into, + ACTIONS(11018), 2, + sym__ws, + sym_comment, + STATE(3094), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [179517] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3221), 1, + STATE(3410), 1, sym_num_lit, - ACTIONS(6022), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2730), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163177] = 6, + [179539] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6028), 1, - anon_sym_cl, - ACTIONS(6030), 1, - anon_sym_into, - ACTIONS(6026), 2, + STATE(3591), 1, + sym_num_lit, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163199] = 9, + [179561] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5611), 1, + ACTIONS(10713), 1, anon_sym_POUNDC, - ACTIONS(5613), 1, + ACTIONS(10715), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163227] = 9, + [179589] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5669), 1, + ACTIONS(10615), 1, anon_sym_POUNDC, - ACTIONS(5671), 1, + ACTIONS(10617), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163255] = 9, + [179617] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5689), 1, + ACTIONS(10493), 1, anon_sym_POUNDC, - ACTIONS(5691), 1, + ACTIONS(10495), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163283] = 9, + [179645] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5731), 1, + ACTIONS(10561), 1, anon_sym_POUNDC, - ACTIONS(5733), 1, + ACTIONS(10563), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163311] = 9, + [179673] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5591), 1, + ACTIONS(10635), 1, anon_sym_POUNDC, - ACTIONS(5593), 1, + ACTIONS(10637), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163339] = 9, + [179701] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5559), 1, + ACTIONS(10595), 1, anon_sym_POUNDC, - ACTIONS(5561), 1, + ACTIONS(10597), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163367] = 9, + [179729] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5709), 1, + ACTIONS(10681), 1, anon_sym_POUNDC, - ACTIONS(5711), 1, + ACTIONS(10683), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163395] = 9, + [179757] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4707), 1, + ACTIONS(8099), 1, anon_sym_CARET, - ACTIONS(4709), 1, + ACTIONS(8101), 1, anon_sym_POUND_CARET, - ACTIONS(5519), 1, + ACTIONS(10531), 1, anon_sym_POUNDC, - ACTIONS(5521), 1, + ACTIONS(10533), 1, anon_sym_POUNDc, - STATE(2258), 1, + STATE(2901), 1, sym__metadata_lit, - STATE(2273), 1, + STATE(2968), 1, sym_meta_lit, - STATE(2277), 1, + STATE(2972), 1, sym_old_meta_lit, - STATE(2362), 1, + STATE(3003), 1, aux_sym_list_lit_repeat1, - [163423] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2575), 1, - sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163445] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2578), 1, - sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163467] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2582), 1, - sym_num_lit, - ACTIONS(6032), 2, - sym__ws, - sym_comment, - STATE(2472), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163489] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2583), 1, - sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163511] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2585), 1, - sym_num_lit, - ACTIONS(6034), 2, - sym__ws, - sym_comment, - STATE(2473), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163533] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2586), 1, - sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163555] = 6, + [179785] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2588), 1, + STATE(3217), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163577] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5977), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2590), 1, - sym_num_lit, - ACTIONS(6036), 2, - sym__ws, - sym_comment, - STATE(2475), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163599] = 6, + [179807] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2591), 1, + STATE(3220), 1, sym_num_lit, - ACTIONS(6038), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2477), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163621] = 6, + [179829] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2592), 1, + STATE(3224), 1, sym_num_lit, - ACTIONS(6040), 2, + ACTIONS(11036), 2, sym__ws, sym_comment, - STATE(2478), 3, + STATE(3118), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163643] = 6, + [179851] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2592), 1, + STATE(3225), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163665] = 6, + [179873] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2594), 1, + STATE(3227), 1, sym_num_lit, - ACTIONS(6042), 2, + ACTIONS(11038), 2, sym__ws, sym_comment, - STATE(2482), 3, + STATE(3119), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163687] = 6, + [179895] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2598), 1, + STATE(3228), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163709] = 6, + [179917] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2602), 1, + STATE(3230), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163731] = 6, + [179939] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2606), 1, + STATE(3232), 1, sym_num_lit, - ACTIONS(6044), 2, + ACTIONS(11040), 2, sym__ws, sym_comment, - STATE(2484), 3, + STATE(3121), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163753] = 6, + [179961] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2607), 1, + STATE(3233), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11042), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3123), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163775] = 6, + [179983] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2610), 1, + STATE(3234), 1, sym_num_lit, - ACTIONS(6046), 2, + ACTIONS(11044), 2, sym__ws, sym_comment, - STATE(2485), 3, + STATE(3124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163797] = 6, + [180005] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2611), 1, + STATE(3234), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163819] = 6, + [180027] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2613), 1, + STATE(3236), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11046), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163841] = 6, + [180049] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2616), 1, + STATE(3239), 1, sym_num_lit, - ACTIONS(6048), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2487), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163863] = 6, + [180071] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2617), 1, + STATE(3242), 1, sym_num_lit, - ACTIONS(6050), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2489), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163885] = 6, + [180093] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2618), 1, + STATE(3246), 1, sym_num_lit, - ACTIONS(6052), 2, + ACTIONS(11048), 2, sym__ws, sym_comment, - STATE(2490), 3, + STATE(3130), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163907] = 6, + [180115] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2618), 1, + STATE(3247), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163929] = 6, + [180137] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2620), 1, + STATE(3250), 1, sym_num_lit, - ACTIONS(6054), 2, + ACTIONS(11050), 2, sym__ws, sym_comment, - STATE(2494), 3, + STATE(3131), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163951] = 6, + [180159] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2623), 1, + STATE(3251), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [163973] = 6, + [180181] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2626), 1, + STATE(3254), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163995] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6056), 1, - anon_sym_cl, - ACTIONS(6058), 1, - anon_sym_EQ, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164017] = 6, + [180203] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2630), 1, + STATE(3256), 1, sym_num_lit, - ACTIONS(6060), 2, + ACTIONS(11052), 2, sym__ws, sym_comment, - STATE(2496), 3, + STATE(3133), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164039] = 6, + [180225] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2631), 1, + STATE(3257), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11054), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3135), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164061] = 6, + [180247] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2633), 1, + STATE(3258), 1, sym_num_lit, - ACTIONS(6062), 2, + ACTIONS(11056), 2, sym__ws, sym_comment, - STATE(2497), 3, + STATE(3136), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164083] = 6, + [180269] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2634), 1, + STATE(3258), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164105] = 6, + [180291] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2636), 1, + STATE(3260), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11058), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3140), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164127] = 6, + [180313] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2638), 1, + STATE(3264), 1, sym_num_lit, - ACTIONS(6064), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2500), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164149] = 6, + [180335] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2639), 1, + STATE(3267), 1, sym_num_lit, - ACTIONS(6066), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2502), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164171] = 6, + [180357] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2640), 1, + STATE(3271), 1, sym_num_lit, - ACTIONS(6068), 2, + ACTIONS(11060), 2, sym__ws, sym_comment, - STATE(2503), 3, + STATE(3142), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164193] = 6, + [180379] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2640), 1, + STATE(3272), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164215] = 6, + [180401] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2642), 1, + STATE(3274), 1, sym_num_lit, - ACTIONS(6070), 2, + ACTIONS(11062), 2, sym__ws, sym_comment, - STATE(2507), 3, + STATE(3143), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164237] = 6, + [180423] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2645), 1, + STATE(3275), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164259] = 6, + [180445] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2648), 1, + STATE(3277), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164281] = 6, + [180467] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2652), 1, + STATE(3279), 1, sym_num_lit, - ACTIONS(6072), 2, + ACTIONS(11064), 2, sym__ws, sym_comment, - STATE(2509), 3, + STATE(3145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164303] = 6, + [180489] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2653), 1, + STATE(3280), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11066), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164325] = 6, + [180511] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2655), 1, + STATE(3281), 1, sym_num_lit, - ACTIONS(6074), 2, + ACTIONS(11068), 2, sym__ws, sym_comment, - STATE(2510), 3, + STATE(3148), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164347] = 6, + [180533] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2656), 1, + STATE(3281), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164369] = 6, + [180555] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2659), 1, + STATE(3283), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11070), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3152), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164391] = 6, + [180577] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2661), 1, + STATE(3286), 1, sym_num_lit, - ACTIONS(6076), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2512), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164413] = 6, + [180599] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2662), 1, + STATE(3289), 1, sym_num_lit, - ACTIONS(6078), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2514), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164435] = 6, + [180621] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2663), 1, + STATE(3293), 1, sym_num_lit, - ACTIONS(6080), 2, + ACTIONS(11072), 2, sym__ws, sym_comment, - STATE(2515), 3, + STATE(3154), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164457] = 6, + [180643] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2663), 1, + STATE(3294), 1, sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [164479] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6084), 1, - anon_sym_cl, - ACTIONS(6086), 1, - anon_sym_EQ, - ACTIONS(6082), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2498), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164501] = 6, + [180665] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2665), 1, + STATE(3296), 1, sym_num_lit, - ACTIONS(6088), 2, + ACTIONS(11074), 2, sym__ws, sym_comment, - STATE(2519), 3, + STATE(3155), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164523] = 6, + [180687] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2669), 1, + STATE(3297), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164545] = 6, + [180709] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2672), 1, + STATE(3299), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164567] = 6, + [180731] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2676), 1, + STATE(3301), 1, sym_num_lit, - ACTIONS(6090), 2, + ACTIONS(11076), 2, sym__ws, sym_comment, - STATE(2522), 3, + STATE(3157), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164589] = 6, + [180753] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2677), 1, + STATE(3302), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11078), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3159), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164611] = 6, + [180775] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2679), 1, + STATE(3303), 1, sym_num_lit, - ACTIONS(6092), 2, + ACTIONS(11080), 2, sym__ws, sym_comment, - STATE(2523), 3, + STATE(3160), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164633] = 6, + [180797] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2680), 1, + STATE(3303), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164655] = 6, + [180819] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2683), 1, + STATE(3305), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11082), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3164), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164677] = 6, + [180841] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2685), 1, + STATE(3308), 1, sym_num_lit, - ACTIONS(6094), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2525), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164699] = 6, + [180863] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2686), 1, + STATE(3311), 1, sym_num_lit, - ACTIONS(6096), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2527), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164721] = 6, + [180885] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2687), 1, + STATE(3316), 1, sym_num_lit, - ACTIONS(6098), 2, + ACTIONS(11084), 2, sym__ws, sym_comment, - STATE(2528), 3, + STATE(3166), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164743] = 6, + [180907] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2687), 1, + STATE(3317), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164765] = 6, + [180929] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2689), 1, + STATE(3320), 1, sym_num_lit, - ACTIONS(6100), 2, + ACTIONS(11086), 2, sym__ws, sym_comment, - STATE(2532), 3, + STATE(3167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164787] = 6, + [180951] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2692), 1, + STATE(3321), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164809] = 6, + [180973] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2695), 1, + STATE(3324), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164831] = 6, + [180995] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2699), 1, + STATE(3326), 1, sym_num_lit, - ACTIONS(6102), 2, + ACTIONS(11088), 2, sym__ws, sym_comment, - STATE(2534), 3, + STATE(3169), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164853] = 6, + [181017] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2700), 1, + STATE(3328), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11090), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3171), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164875] = 6, + [181039] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2703), 1, + STATE(3329), 1, sym_num_lit, - ACTIONS(6104), 2, + ACTIONS(11092), 2, sym__ws, sym_comment, - STATE(2535), 3, + STATE(3172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164897] = 6, + [181061] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2705), 1, + STATE(3329), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164919] = 6, + [181083] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2707), 1, + STATE(3331), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11094), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3176), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164941] = 6, + [181105] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2709), 1, + STATE(3335), 1, sym_num_lit, - ACTIONS(6106), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2537), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164963] = 6, + [181127] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2710), 1, + STATE(3339), 1, sym_num_lit, - ACTIONS(6108), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2539), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [164985] = 6, + [181149] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2711), 1, + STATE(3343), 1, sym_num_lit, - ACTIONS(6110), 2, + ACTIONS(11096), 2, sym__ws, sym_comment, - STATE(2540), 3, + STATE(3178), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165007] = 6, + [181171] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2711), 1, + STATE(3344), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165029] = 6, + [181193] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2713), 1, + STATE(3346), 1, sym_num_lit, - ACTIONS(6112), 2, + ACTIONS(11098), 2, sym__ws, sym_comment, - STATE(2544), 3, + STATE(3179), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165051] = 6, + [181215] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2716), 1, + STATE(3347), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165073] = 6, + [181237] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2719), 1, + STATE(3349), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165095] = 6, + [181259] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2723), 1, + STATE(3351), 1, sym_num_lit, - ACTIONS(6114), 2, + ACTIONS(11100), 2, sym__ws, sym_comment, - STATE(2546), 3, + STATE(3181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165117] = 6, + [181281] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2724), 1, + STATE(3352), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11102), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3183), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165139] = 6, + [181303] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2726), 1, + STATE(3353), 1, sym_num_lit, - ACTIONS(6116), 2, + ACTIONS(11104), 2, sym__ws, sym_comment, - STATE(2547), 3, + STATE(3184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165161] = 6, + [181325] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2727), 1, + STATE(3353), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165183] = 6, + [181347] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2729), 1, + STATE(3355), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11106), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3188), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165205] = 6, + [181369] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2731), 1, + STATE(3358), 1, sym_num_lit, - ACTIONS(6118), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2549), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165227] = 6, + [181391] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2732), 1, + STATE(3361), 1, sym_num_lit, - ACTIONS(6120), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2551), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165249] = 6, + [181413] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2462), 1, + STATE(3365), 1, sym_num_lit, - ACTIONS(6122), 2, + ACTIONS(11108), 2, sym__ws, sym_comment, - STATE(2552), 3, + STATE(3190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165271] = 6, + [181435] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2462), 1, + STATE(3366), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165293] = 6, + [181457] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2734), 1, + STATE(3368), 1, sym_num_lit, - ACTIONS(6124), 2, + ACTIONS(11110), 2, sym__ws, sym_comment, - STATE(2556), 3, + STATE(3191), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165315] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6126), 1, - aux_sym_num_lit_token2, - ACTIONS(4134), 7, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_cl, - anon_sym_EQ, - anon_sym_into, - [165331] = 6, + [181479] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2737), 1, + STATE(3369), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165353] = 6, + [181501] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2740), 1, + STATE(3371), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165375] = 6, + [181523] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2744), 1, + STATE(3373), 1, sym_num_lit, - ACTIONS(6128), 2, - sym__ws, - sym_comment, - STATE(2559), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [165397] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6130), 1, - anon_sym_cl, - ACTIONS(6132), 1, - anon_sym_EQ, - ACTIONS(6026), 2, + ACTIONS(11112), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165419] = 6, + [181545] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2745), 1, + STATE(3374), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11114), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165441] = 6, + [181567] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2747), 1, + STATE(3375), 1, sym_num_lit, - ACTIONS(6134), 2, + ACTIONS(11116), 2, sym__ws, sym_comment, - STATE(2560), 3, + STATE(3196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165463] = 6, + [181589] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2748), 1, + STATE(3375), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165485] = 6, + [181611] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2750), 1, + STATE(3377), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11118), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3200), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165507] = 6, + [181633] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2753), 1, + STATE(3380), 1, sym_num_lit, - ACTIONS(6136), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2563), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165529] = 6, + [181655] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2754), 1, + STATE(3383), 1, sym_num_lit, - ACTIONS(6138), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2565), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165551] = 6, + [181677] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2755), 1, + STATE(3387), 1, sym_num_lit, - ACTIONS(6140), 2, + ACTIONS(11120), 2, sym__ws, sym_comment, - STATE(2566), 3, + STATE(3202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165573] = 6, + [181699] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2755), 1, + STATE(3388), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165595] = 6, + [181721] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2757), 1, + STATE(3390), 1, sym_num_lit, - ACTIONS(6142), 2, + ACTIONS(11122), 2, sym__ws, sym_comment, - STATE(2570), 3, + STATE(3203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165617] = 6, + [181743] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3028), 1, + STATE(3391), 1, sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [165639] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6144), 1, - anon_sym_cl, - ACTIONS(6146), 1, - anon_sym_EQ, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165661] = 6, + [181765] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3024), 1, + STATE(3393), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165683] = 6, + [181787] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3019), 1, + STATE(3395), 1, sym_num_lit, - ACTIONS(6148), 2, + ACTIONS(11124), 2, sym__ws, sym_comment, - STATE(2572), 3, + STATE(3205), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165705] = 6, + [181809] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3018), 1, + STATE(3396), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11126), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165727] = 6, + [181831] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3016), 1, + STATE(3397), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11128), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165749] = 6, + [181853] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3013), 1, + STATE(3397), 1, sym_num_lit, - ACTIONS(6150), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2574), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165771] = 6, + [181875] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3012), 1, + STATE(3699), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165793] = 6, + [181897] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3010), 1, + STATE(3399), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11130), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3212), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165815] = 6, + [181919] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3007), 1, + STATE(3682), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165837] = 6, + [181941] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3004), 1, + STATE(3678), 1, sym_num_lit, - ACTIONS(6152), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2576), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165859] = 6, + [181963] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3003), 1, + STATE(3673), 1, sym_num_lit, - ACTIONS(6154), 2, + ACTIONS(11132), 2, sym__ws, sym_comment, - STATE(2577), 3, + STATE(3215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165881] = 6, + [181985] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3002), 1, + STATE(3672), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165903] = 6, + [182007] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3000), 1, + STATE(3670), 1, sym_num_lit, - ACTIONS(6156), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2579), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165925] = 6, + [182029] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2999), 1, + STATE(3667), 1, sym_num_lit, - ACTIONS(6158), 2, + ACTIONS(11134), 2, sym__ws, sym_comment, - STATE(2580), 3, + STATE(3216), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165947] = 6, + [182051] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2998), 1, + STATE(3666), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165969] = 6, + [182073] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2996), 1, + STATE(3664), 1, sym_num_lit, - ACTIONS(6160), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2581), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [165991] = 6, + [182095] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2995), 1, + STATE(3661), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166013] = 6, + [182117] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2991), 1, + STATE(3658), 1, sym_num_lit, - ACTIONS(6162), 2, + ACTIONS(11136), 2, sym__ws, sym_comment, - STATE(2584), 3, + STATE(3218), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166035] = 6, + [182139] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2990), 1, + STATE(3657), 1, sym_num_lit, - ACTIONS(6164), 2, + ACTIONS(11138), 2, sym__ws, sym_comment, - STATE(2587), 3, + STATE(3219), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166057] = 6, + [182161] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2989), 1, + STATE(3656), 1, sym_num_lit, - ACTIONS(6166), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2589), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166079] = 6, + [182183] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2988), 1, + STATE(3426), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11140), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3221), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166101] = 6, + [182205] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2983), 1, + STATE(3653), 1, sym_num_lit, - ACTIONS(6168), 2, + ACTIONS(11142), 2, sym__ws, sym_comment, - STATE(2593), 3, + STATE(3222), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166123] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6170), 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, - [166139] = 6, + [182227] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2934), 1, + STATE(3652), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166161] = 6, + [182249] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2930), 1, + STATE(3650), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11144), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3223), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166183] = 6, + [182271] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2925), 1, + STATE(3649), 1, sym_num_lit, - ACTIONS(6172), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2596), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [166205] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6174), 1, - anon_sym_cl, - ACTIONS(6176), 1, - anon_sym_EQ, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166227] = 6, + [182293] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2924), 1, + STATE(3645), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11146), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166249] = 6, + [182315] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2922), 1, + STATE(3644), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11148), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3229), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166271] = 6, + [182337] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2919), 1, + STATE(3643), 1, sym_num_lit, - ACTIONS(6178), 2, + ACTIONS(11150), 2, sym__ws, sym_comment, - STATE(2597), 3, + STATE(3231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166293] = 6, + [182359] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2918), 1, + STATE(3642), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166315] = 6, + [182381] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2916), 1, + STATE(3637), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11152), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3235), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166337] = 6, + [182403] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2913), 1, + STATE(3588), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166359] = 6, + [182425] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2910), 1, + STATE(3584), 1, sym_num_lit, - ACTIONS(6180), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2600), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166381] = 6, + [182447] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2909), 1, + STATE(3579), 1, sym_num_lit, - ACTIONS(6182), 2, + ACTIONS(11154), 2, sym__ws, sym_comment, - STATE(2601), 3, + STATE(3237), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166403] = 6, + [182469] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6186), 1, - anon_sym_cl, - ACTIONS(6188), 1, - anon_sym_EQ, - ACTIONS(6184), 2, - sym__ws, - sym_comment, - STATE(2562), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [166425] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2908), 1, + STATE(3578), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166447] = 6, + [182491] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2906), 1, + STATE(3576), 1, sym_num_lit, - ACTIONS(6190), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2603), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166469] = 6, + [182513] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2905), 1, + STATE(3573), 1, sym_num_lit, - ACTIONS(6192), 2, + ACTIONS(11156), 2, sym__ws, sym_comment, - STATE(2604), 3, + STATE(3238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166491] = 6, + [182535] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2904), 1, + STATE(3572), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166513] = 6, + [182557] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2902), 1, + STATE(3570), 1, sym_num_lit, - ACTIONS(6194), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2605), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166535] = 6, + [182579] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2901), 1, + STATE(3567), 1, sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [166557] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6198), 1, - anon_sym_cl, - ACTIONS(6200), 1, - anon_sym_EQ, - ACTIONS(6196), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2573), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166579] = 6, + [182601] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2897), 1, + STATE(3564), 1, sym_num_lit, - ACTIONS(6202), 2, + ACTIONS(11158), 2, sym__ws, sym_comment, - STATE(2609), 3, + STATE(3240), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166601] = 6, + [182623] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2896), 1, + STATE(3563), 1, sym_num_lit, - ACTIONS(6204), 2, + ACTIONS(11160), 2, sym__ws, sym_comment, - STATE(2612), 3, + STATE(3241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166623] = 6, + [182645] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2895), 1, + STATE(3562), 1, sym_num_lit, - ACTIONS(6206), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2614), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166645] = 6, + [182667] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2894), 1, + STATE(3420), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11162), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166667] = 6, + [182689] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2889), 1, + STATE(3560), 1, sym_num_lit, - ACTIONS(6208), 2, + ACTIONS(11164), 2, sym__ws, sym_comment, - STATE(2619), 3, + STATE(3243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166689] = 6, + [182711] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2840), 1, + STATE(3559), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11166), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3244), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166711] = 6, + [182733] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2836), 1, + STATE(3558), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166733] = 6, + [182755] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2831), 1, + STATE(3423), 1, sym_num_lit, - ACTIONS(6210), 2, + ACTIONS(11168), 2, sym__ws, sym_comment, - STATE(2621), 3, + STATE(3422), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166755] = 6, + [182777] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2830), 1, + STATE(3556), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11170), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3245), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166777] = 6, + [182799] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2828), 1, + STATE(3555), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166799] = 6, + [182821] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2825), 1, + STATE(3551), 1, sym_num_lit, - ACTIONS(6212), 2, + ACTIONS(11172), 2, sym__ws, sym_comment, - STATE(2622), 3, + STATE(3248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166821] = 6, + [182843] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2824), 1, + STATE(3550), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11174), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3252), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166843] = 6, + [182865] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2822), 1, + STATE(3549), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11176), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3255), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166865] = 6, + [182887] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2819), 1, + STATE(3548), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166887] = 6, + [182909] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2816), 1, + STATE(3543), 1, sym_num_lit, - ACTIONS(6214), 2, + ACTIONS(11178), 2, sym__ws, sym_comment, - STATE(2624), 3, + STATE(3259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166909] = 6, + [182931] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2815), 1, + STATE(3494), 1, sym_num_lit, - ACTIONS(6216), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2625), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166931] = 6, + [182953] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2814), 1, + STATE(3490), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166953] = 6, + [182975] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2812), 1, + STATE(3860), 1, sym_num_lit, - ACTIONS(6218), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2627), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166975] = 6, + [182997] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2811), 1, + STATE(3485), 1, sym_num_lit, - ACTIONS(6220), 2, + ACTIONS(11180), 2, sym__ws, sym_comment, - STATE(2628), 3, + STATE(3261), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [166997] = 6, + [183019] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2810), 1, + STATE(3484), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167019] = 6, + [183041] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2808), 1, + STATE(3482), 1, sym_num_lit, - ACTIONS(6222), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2629), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167041] = 6, + [183063] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2807), 1, + STATE(3479), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11182), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3262), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167063] = 6, + [183085] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2803), 1, + STATE(3478), 1, sym_num_lit, - ACTIONS(6224), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2632), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167085] = 6, + [183107] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2802), 1, + STATE(3476), 1, sym_num_lit, - ACTIONS(6226), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2635), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167107] = 6, + [183129] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2801), 1, + STATE(3473), 1, sym_num_lit, - ACTIONS(6228), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2637), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167129] = 6, + [183151] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2800), 1, + STATE(3470), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11184), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3265), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167151] = 6, + [183173] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2873), 1, + STATE(3469), 1, sym_num_lit, - ACTIONS(6230), 2, + ACTIONS(11186), 2, sym__ws, sym_comment, - STATE(2641), 3, + STATE(3266), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167173] = 6, + [183195] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3148), 1, + STATE(3468), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167195] = 6, + [183217] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3152), 1, + STATE(3466), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11188), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3268), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167217] = 6, + [183239] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3157), 1, + STATE(3465), 1, sym_num_lit, - ACTIONS(6232), 2, + ACTIONS(11190), 2, sym__ws, sym_comment, - STATE(2643), 3, + STATE(3269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167239] = 6, + [183261] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3158), 1, + STATE(3464), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167261] = 6, + [183283] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3165), 1, + STATE(3462), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11192), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167283] = 6, + [183305] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3169), 1, + STATE(3461), 1, sym_num_lit, - ACTIONS(6234), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2644), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167305] = 6, + [183327] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3170), 1, + STATE(3457), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11194), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3273), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167327] = 6, + [183349] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3172), 1, + STATE(3456), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11196), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3276), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167349] = 6, + [183371] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3175), 1, + STATE(3455), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11198), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3278), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167371] = 6, + [183393] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3178), 1, + STATE(3454), 1, sym_num_lit, - ACTIONS(6236), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2646), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167393] = 6, + [183415] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3179), 1, + STATE(3449), 1, sym_num_lit, - ACTIONS(6238), 2, + ACTIONS(11200), 2, sym__ws, sym_comment, - STATE(2647), 3, + STATE(3282), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167415] = 6, + [183437] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3125), 1, + STATE(3701), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167437] = 6, + [183459] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3182), 1, + STATE(3796), 1, sym_num_lit, - ACTIONS(6240), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2649), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167459] = 6, + [183481] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3183), 1, + STATE(3801), 1, sym_num_lit, - ACTIONS(6242), 2, + ACTIONS(11202), 2, sym__ws, sym_comment, - STATE(2650), 3, + STATE(3284), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167481] = 6, + [183503] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6244), 1, - anon_sym_cl, - ACTIONS(6246), 1, - anon_sym_EQ, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [167503] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3184), 1, + STATE(3802), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167525] = 6, + [183525] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3188), 1, + STATE(3804), 1, sym_num_lit, - ACTIONS(6248), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2651), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167547] = 6, + [183547] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3190), 1, + STATE(3807), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11204), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3285), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167569] = 6, + [183569] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3194), 1, + STATE(3808), 1, sym_num_lit, - ACTIONS(6250), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2654), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167591] = 6, + [183591] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3195), 1, + STATE(3810), 1, sym_num_lit, - ACTIONS(6252), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2658), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167613] = 6, + [183613] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3196), 1, + STATE(3813), 1, sym_num_lit, - ACTIONS(6254), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2660), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167635] = 6, + [183635] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3197), 1, + STATE(3821), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11206), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3287), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167657] = 6, + [183657] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3200), 1, + STATE(3822), 1, sym_num_lit, - ACTIONS(6256), 2, + ACTIONS(11208), 2, sym__ws, sym_comment, - STATE(2664), 3, + STATE(3288), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167679] = 6, + [183679] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3180), 1, + STATE(3823), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167701] = 6, + [183701] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3257), 1, + STATE(3825), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11210), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167723] = 6, + [183723] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3131), 1, + STATE(3826), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11212), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3291), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167745] = 6, + [183745] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3263), 1, + STATE(3827), 1, sym_num_lit, - ACTIONS(6258), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2666), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167767] = 6, + [183767] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3264), 1, + STATE(3829), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11214), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3292), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167789] = 6, + [183789] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3249), 1, + STATE(3830), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167811] = 6, + [183811] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3245), 1, + STATE(3834), 1, sym_num_lit, - ACTIONS(6260), 2, + ACTIONS(11216), 2, sym__ws, sym_comment, - STATE(2667), 3, + STATE(3295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167833] = 6, + [183833] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3244), 1, + STATE(3835), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11218), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3298), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167855] = 6, + [183855] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3242), 1, + STATE(3836), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11220), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3300), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167877] = 6, + [183877] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3236), 1, + STATE(3837), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167899] = 6, + [183899] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3227), 1, + STATE(3846), 1, sym_num_lit, - ACTIONS(6262), 2, + ACTIONS(11222), 2, sym__ws, sym_comment, - STATE(2670), 3, + STATE(3304), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167921] = 6, + [183921] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3225), 1, + STATE(3880), 1, sym_num_lit, - ACTIONS(6264), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2671), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167943] = 6, + [183943] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3224), 1, + STATE(3884), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167965] = 6, + [183965] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3214), 1, + STATE(3870), 1, sym_num_lit, - ACTIONS(6266), 2, + ACTIONS(11224), 2, sym__ws, sym_comment, - STATE(2673), 3, + STATE(3306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [167987] = 6, + [183987] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3211), 1, + STATE(3871), 1, sym_num_lit, - ACTIONS(6268), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2674), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168009] = 6, + [184009] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3208), 1, + STATE(3877), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168031] = 6, + [184031] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3138), 1, + STATE(3864), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11226), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3307), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168053] = 6, + [184053] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3202), 1, + STATE(3863), 1, sym_num_lit, - ACTIONS(6270), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2675), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168075] = 6, + [184075] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3201), 1, + STATE(3859), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168097] = 6, + [184097] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3186), 1, + STATE(3327), 1, sym_num_lit, - ACTIONS(6272), 2, + ACTIONS(11228), 2, sym__ws, sym_comment, - STATE(2678), 3, + STATE(3336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168119] = 6, + [184119] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3166), 1, + STATE(3854), 1, sym_num_lit, - ACTIONS(6274), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2681), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168141] = 6, + [184141] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3164), 1, + STATE(3842), 1, sym_num_lit, - ACTIONS(6276), 2, + ACTIONS(11230), 2, sym__ws, sym_comment, - STATE(2684), 3, + STATE(3309), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168163] = 6, + [184163] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3161), 1, + STATE(3841), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11232), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3310), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168185] = 6, + [184185] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3144), 1, + STATE(3327), 1, sym_num_lit, - ACTIONS(6278), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2688), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168207] = 6, + [184207] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3107), 1, + STATE(3819), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168229] = 6, + [184229] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3099), 1, + STATE(3815), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11234), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168251] = 6, + [184251] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3089), 1, + STATE(3814), 1, sym_num_lit, - ACTIONS(6280), 2, + ACTIONS(11236), 2, sym__ws, sym_comment, - STATE(2690), 3, + STATE(3313), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168273] = 6, + [184273] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3088), 1, + STATE(3879), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11238), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3213), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168295] = 6, + [184295] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3085), 1, + STATE(3792), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168317] = 6, + [184317] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3075), 1, + STATE(3788), 1, sym_num_lit, - ACTIONS(6282), 2, + ACTIONS(11240), 2, sym__ws, sym_comment, - STATE(2691), 3, + STATE(3315), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168339] = 6, + [184339] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3073), 1, + STATE(3787), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168361] = 6, + [184361] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3070), 1, + STATE(3784), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11242), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168383] = 6, + [184383] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3066), 1, + STATE(3700), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11244), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3416), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168405] = 6, + [184405] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3058), 1, + STATE(3783), 1, sym_num_lit, - ACTIONS(6284), 2, + ACTIONS(11246), 2, sym__ws, sym_comment, - STATE(2693), 3, + STATE(3323), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168427] = 6, + [184427] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3057), 1, + STATE(3781), 1, sym_num_lit, - ACTIONS(6286), 2, + ACTIONS(11248), 2, sym__ws, sym_comment, - STATE(2694), 3, + STATE(3325), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168449] = 6, + [184449] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3055), 1, + STATE(3780), 1, sym_num_lit, - ACTIONS(6026), 2, - sym__ws, - sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [168471] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6290), 1, - anon_sym_cl, - ACTIONS(6292), 1, - anon_sym_EQ, - ACTIONS(6288), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2599), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168493] = 6, + [184471] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3053), 1, + STATE(3777), 1, sym_num_lit, - ACTIONS(6294), 2, - sym__ws, - sym_comment, - STATE(2696), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [168515] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6024), 1, - anon_sym_POUND_, - ACTIONS(6296), 1, - anon_sym_cl, - ACTIONS(6298), 1, - anon_sym_EQ, - ACTIONS(6026), 2, + ACTIONS(11250), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168537] = 6, + [184493] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3052), 1, + STATE(3878), 1, sym_num_lit, - ACTIONS(6300), 2, + ACTIONS(11252), 2, sym__ws, sym_comment, - STATE(2697), 3, + STATE(3263), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168559] = 6, + [184515] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3051), 1, + STATE(3742), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168581] = 6, + [184537] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3049), 1, + STATE(3736), 1, sym_num_lit, - ACTIONS(6302), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2698), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168603] = 6, + [184559] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3048), 1, + STATE(3731), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11254), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3333), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168625] = 6, + [184581] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3045), 1, + STATE(3415), 1, sym_num_lit, - ACTIONS(6304), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2701), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168647] = 6, + [184603] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3044), 1, + STATE(3730), 1, sym_num_lit, - ACTIONS(6306), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2706), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168669] = 6, + [184625] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3043), 1, + STATE(3727), 1, sym_num_lit, - ACTIONS(6308), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2708), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168691] = 6, + [184647] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3037), 1, + STATE(3723), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11256), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168713] = 6, + [184669] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3034), 1, + STATE(3722), 1, sym_num_lit, - ACTIONS(6310), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2712), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168735] = 6, + [184691] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2978), 1, + STATE(3720), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168757] = 6, + [184713] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2851), 1, + STATE(3717), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168779] = 6, + [184735] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2846), 1, + STATE(3714), 1, sym_num_lit, - ACTIONS(6312), 2, + ACTIONS(11258), 2, sym__ws, sym_comment, - STATE(2714), 3, + STATE(3337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168801] = 6, + [184757] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2845), 1, + STATE(3706), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11260), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3338), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168823] = 6, + [184779] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3063), 1, + STATE(3705), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168845] = 6, + [184801] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3126), 1, + STATE(3702), 1, sym_num_lit, - ACTIONS(6314), 2, + ACTIONS(11262), 2, sym__ws, sym_comment, - STATE(2715), 3, + STATE(3340), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168867] = 6, + [184823] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3127), 1, + STATE(3698), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11264), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168889] = 6, + [184845] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3134), 1, + STATE(3694), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168911] = 6, + [184867] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3240), 1, + STATE(3769), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11266), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3342), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168933] = 6, + [184889] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3234), 1, + STATE(3691), 1, sym_num_lit, - ACTIONS(6316), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2717), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168955] = 6, + [184911] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3118), 1, + STATE(3688), 1, sym_num_lit, - ACTIONS(6318), 2, + ACTIONS(11268), 2, sym__ws, sym_comment, - STATE(2718), 3, + STATE(3345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168977] = 6, + [184933] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3220), 1, + STATE(3687), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11270), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [168999] = 6, + [184955] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3205), 1, + STATE(3686), 1, sym_num_lit, - ACTIONS(6320), 2, + ACTIONS(11272), 2, sym__ws, sym_comment, - STATE(2720), 3, + STATE(3350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169021] = 6, + [184977] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3204), 1, + STATE(3646), 1, sym_num_lit, - ACTIONS(6322), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2721), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169043] = 6, + [184999] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3145), 1, + STATE(3639), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11274), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3354), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169065] = 6, + [185021] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3062), 1, + STATE(3443), 1, sym_num_lit, - ACTIONS(6324), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2722), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169087] = 6, + [185043] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3071), 1, + STATE(3427), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169109] = 6, + [185065] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2964), 1, + STATE(3621), 1, sym_num_lit, - ACTIONS(6326), 2, + ACTIONS(11276), 2, sym__ws, sym_comment, - STATE(2725), 3, + STATE(3356), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169131] = 6, + [185087] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2959), 1, + STATE(3620), 1, sym_num_lit, - ACTIONS(6328), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2728), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169153] = 6, + [185109] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2804), 1, + STATE(3618), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169175] = 6, + [185131] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2975), 1, + STATE(3614), 1, sym_num_lit, - ACTIONS(6330), 2, + ACTIONS(11278), 2, sym__ws, sym_comment, - STATE(2733), 3, + STATE(3357), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169197] = 6, + [185153] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2955), 1, + STATE(3612), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169219] = 6, + [185175] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2986), 1, + STATE(3451), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169241] = 6, + [185197] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3039), 1, + STATE(3628), 1, sym_num_lit, - ACTIONS(6332), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2735), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169263] = 6, + [185219] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3040), 1, + STATE(3631), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11280), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3359), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169285] = 6, + [185241] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3042), 1, + STATE(3632), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11282), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3360), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169307] = 6, + [185263] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3060), 1, + STATE(3633), 1, sym_num_lit, - ACTIONS(6334), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2736), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169329] = 6, + [185285] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3074), 1, + STATE(3635), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11284), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3362), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169351] = 6, + [185307] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3080), 1, + STATE(3636), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11286), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3363), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169373] = 6, + [185329] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3083), 1, + STATE(3638), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169395] = 6, + [185351] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3090), 1, + STATE(3748), 1, sym_num_lit, - ACTIONS(6336), 2, + ACTIONS(11288), 2, sym__ws, sym_comment, - STATE(2738), 3, + STATE(3364), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169417] = 6, + [185373] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3092), 1, + STATE(3753), 1, sym_num_lit, - ACTIONS(6338), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2739), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169439] = 6, + [185395] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3093), 1, + STATE(3762), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11290), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169461] = 6, + [185417] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3098), 1, + STATE(3764), 1, sym_num_lit, - ACTIONS(6340), 2, + ACTIONS(11292), 2, sym__ws, sym_comment, - STATE(2741), 3, + STATE(3370), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169483] = 6, + [185439] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3102), 1, + STATE(3770), 1, sym_num_lit, - ACTIONS(6342), 2, + ACTIONS(11294), 2, sym__ws, sym_comment, - STATE(2742), 3, + STATE(3372), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169505] = 6, + [185461] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3103), 1, + STATE(3771), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169527] = 6, + [185483] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3105), 1, + STATE(3773), 1, sym_num_lit, - ACTIONS(6344), 2, + ACTIONS(11296), 2, sym__ws, sym_comment, - STATE(2743), 3, + STATE(3376), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169549] = 6, + [185505] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6346), 1, - anon_sym_cl, - ACTIONS(6348), 1, - anon_sym_EQ, - ACTIONS(6026), 2, + STATE(3852), 1, + sym_num_lit, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169571] = 6, + [185527] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3109), 1, + STATE(3848), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169593] = 6, + [185549] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3112), 1, + STATE(3711), 1, sym_num_lit, - ACTIONS(6350), 2, + ACTIONS(11298), 2, sym__ws, sym_comment, - STATE(2746), 3, + STATE(3378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169615] = 6, + [185571] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3114), 1, + STATE(3709), 1, sym_num_lit, - ACTIONS(6352), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2749), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169637] = 6, + [185593] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3115), 1, + STATE(3704), 1, sym_num_lit, - ACTIONS(6354), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2752), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169659] = 6, + [185615] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3119), 1, + STATE(3546), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11300), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169681] = 6, + [185637] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3123), 1, + STATE(3545), 1, sym_num_lit, - ACTIONS(6356), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2756), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169703] = 9, - ACTIONS(47), 1, - sym_block_comment, - 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, + [185659] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2760), 1, + STATE(3430), 1, sym_num_lit, - ACTIONS(6358), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2761), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169753] = 6, + [185681] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2985), 1, + STATE(3433), 1, sym_num_lit, - ACTIONS(6360), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2765), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169775] = 6, + [185703] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2766), 1, + STATE(3438), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11302), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3381), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169797] = 6, + [185725] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2766), 1, + STATE(3439), 1, sym_num_lit, - ACTIONS(6362), 2, + ACTIONS(11304), 2, sym__ws, sym_comment, - STATE(2768), 3, + STATE(3382), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169819] = 6, + [185747] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2778), 1, + STATE(3442), 1, sym_num_lit, - ACTIONS(6364), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2769), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169841] = 6, + [185769] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2772), 1, + STATE(3446), 1, sym_num_lit, - ACTIONS(6366), 2, + ACTIONS(11306), 2, sym__ws, sym_comment, - STATE(2773), 3, + STATE(3384), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169863] = 6, + [185791] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2939), 1, + STATE(3447), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11308), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3385), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169885] = 6, + [185813] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2938), 1, + STATE(3452), 1, sym_num_lit, - ACTIONS(6368), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2780), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169907] = 6, + [185835] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6372), 1, - anon_sym_cl, - ACTIONS(6374), 1, - anon_sym_EQ, - ACTIONS(6370), 2, + STATE(3498), 1, + sym_num_lit, + ACTIONS(11310), 2, sym__ws, sym_comment, - STATE(2657), 3, + STATE(3386), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169929] = 6, + [185857] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2781), 1, + STATE(3499), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169951] = 6, + [185879] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2785), 1, + STATE(3511), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11312), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3389), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169973] = 6, + [185901] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2786), 1, + STATE(3512), 1, sym_num_lit, - ACTIONS(6376), 2, + ACTIONS(11314), 2, sym__ws, sym_comment, - STATE(2787), 3, + STATE(3392), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169995] = 6, + [185923] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3233), 1, + STATE(3516), 1, sym_num_lit, - ACTIONS(6378), 2, + ACTIONS(11316), 2, sym__ws, sym_comment, - STATE(2668), 3, + STATE(3394), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170017] = 6, + [185945] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2885), 1, + STATE(3519), 1, sym_num_lit, - ACTIONS(6380), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2789), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170039] = 6, + [185967] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2790), 1, + STATE(3527), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11318), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170061] = 6, + [185989] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2791), 1, + STATE(3533), 1, sym_num_lit, - ACTIONS(6382), 2, + ACTIONS(11320), 2, sym__ws, sym_comment, - STATE(2793), 3, + STATE(3109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170083] = 6, + [186011] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3231), 1, + STATE(3862), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170105] = 6, + [186033] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6386), 1, - anon_sym_cl, - ACTIONS(6388), 1, - anon_sym_EQ, - ACTIONS(6384), 2, + STATE(3524), 1, + sym_num_lit, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2794), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170127] = 6, + [186055] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6390), 1, - anon_sym_cl, - ACTIONS(6392), 1, - anon_sym_into, - ACTIONS(6026), 2, + STATE(3765), 1, + sym_num_lit, + ACTIONS(11322), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3401), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170149] = 6, + [186077] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2891), 1, + STATE(3536), 1, sym_num_lit, - ACTIONS(6394), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2782), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170171] = 6, + [186099] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3229), 1, + STATE(3624), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170193] = 6, + [186121] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2879), 1, + STATE(3696), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170215] = 6, + [186143] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2882), 1, - sym_num_lit, - ACTIONS(6396), 2, + ACTIONS(11324), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 7, sym__ws, sym_comment, - STATE(2792), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [170237] = 6, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [186159] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, - aux_sym_num_lit_token1, - ACTIONS(6024), 1, - anon_sym_POUND_, - STATE(2884), 1, - sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11326), 1, + aux_sym_num_lit_token2, + ACTIONS(7443), 7, sym__ws, sym_comment, - STATE(2419), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [170259] = 6, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_COLON, + anon_sym_cl, + anon_sym_into, + [186175] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3132), 1, + STATE(3332), 1, sym_num_lit, - ACTIONS(6398), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2682), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170281] = 6, + [186197] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3218), 1, + STATE(3761), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11328), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3402), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170303] = 6, + [186219] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2886), 1, + STATE(3759), 1, sym_num_lit, - ACTIONS(6400), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2788), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170325] = 6, + [186241] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2890), 1, + STATE(3400), 1, sym_num_lit, - ACTIONS(6402), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2784), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170347] = 6, + [186263] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2783), 1, + STATE(3752), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11330), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3405), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170369] = 6, + [186285] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3216), 1, + STATE(3751), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170391] = 6, + [186307] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2898), 1, + STATE(3746), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11332), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3406), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170413] = 6, + [186329] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2942), 1, + STATE(3745), 1, sym_num_lit, - ACTIONS(6404), 2, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2779), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170435] = 6, + [186351] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2973), 1, + STATE(3322), 1, sym_num_lit, - ACTIONS(6406), 2, + ACTIONS(11334), 2, sym__ws, sym_comment, - STATE(2775), 3, + STATE(3318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170457] = 6, + [186373] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5963), 1, + ACTIONS(10953), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(3210), 1, + STATE(3403), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11336), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3409), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170479] = 6, + [186395] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5977), 1, + ACTIONS(10963), 1, aux_sym_num_lit_token1, - ACTIONS(6024), 1, + ACTIONS(11020), 1, anon_sym_POUND_, - STATE(2771), 1, + STATE(3755), 1, sym_num_lit, - ACTIONS(6026), 2, + ACTIONS(11338), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3404), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170501] = 6, + [186417] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6408), 1, - anon_sym_cl, - ACTIONS(6410), 1, - anon_sym_EQ, - ACTIONS(6026), 2, + STATE(3712), 1, + sym_num_lit, + ACTIONS(11340), 2, sym__ws, sym_comment, - STATE(2419), 3, + STATE(3411), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170523] = 6, + [186439] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10953), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6414), 1, - anon_sym_cl, - ACTIONS(6416), 1, - anon_sym_EQ, - ACTIONS(6412), 2, + STATE(3419), 1, + sym_num_lit, + ACTIONS(11342), 2, sym__ws, sym_comment, - STATE(2751), 3, + STATE(3412), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170545] = 6, + [186461] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6024), 1, + ACTIONS(10953), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6420), 1, - anon_sym_cl, - ACTIONS(6422), 1, - anon_sym_EQ, - ACTIONS(6418), 2, + STATE(3413), 1, + sym_num_lit, + ACTIONS(11018), 2, sym__ws, sym_comment, - STATE(2704), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170567] = 5, + [186483] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10963), 1, + aux_sym_num_lit_token1, + ACTIONS(11020), 1, anon_sym_POUND_, - ACTIONS(6424), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + STATE(3707), 1, + sym_num_lit, + ACTIONS(11344), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3414), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170586] = 5, + [186505] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(8099), 1, + anon_sym_CARET, + ACTIONS(8101), 1, + anon_sym_POUND_CARET, + ACTIONS(10513), 1, + anon_sym_POUNDC, + ACTIONS(10515), 1, + anon_sym_POUNDc, + STATE(2901), 1, + sym__metadata_lit, + STATE(2968), 1, + sym_meta_lit, + STATE(2972), 1, + sym_old_meta_lit, + STATE(3003), 1, + aux_sym_list_lit_repeat1, + [186533] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6426), 1, + ACTIONS(11346), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170605] = 5, + [186552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6428), 1, + ACTIONS(11350), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11348), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170624] = 5, + [186571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6432), 1, + ACTIONS(11354), 1, anon_sym_RPAREN, - ACTIONS(6430), 2, + ACTIONS(11352), 2, sym__ws, sym_comment, - STATE(2805), 3, + STATE(3448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170643] = 5, + [186590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6436), 1, + ACTIONS(11356), 1, anon_sym_RPAREN, - ACTIONS(6434), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2806), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170662] = 5, + [186609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6440), 1, + ACTIONS(11358), 1, anon_sym_RPAREN, - ACTIONS(6438), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2809), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170681] = 5, + [186628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6444), 1, + ACTIONS(11362), 1, anon_sym_RPAREN, - ACTIONS(6442), 2, + ACTIONS(11360), 2, sym__ws, sym_comment, - STATE(2813), 3, + STATE(3756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170700] = 5, + [186647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6448), 1, + ACTIONS(11364), 1, anon_sym_RPAREN, - ACTIONS(6446), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2984), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170719] = 5, + [186666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6450), 1, + ACTIONS(11366), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170738] = 5, + [186685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6452), 1, + ACTIONS(11370), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11368), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170757] = 5, + [186704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6456), 1, + ACTIONS(11372), 1, anon_sym_RPAREN, - ACTIONS(6454), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2817), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170776] = 5, + [186723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6460), 1, + ACTIONS(11374), 1, anon_sym_RPAREN, - ACTIONS(6458), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2818), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170795] = 5, + [186742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6462), 1, + ACTIONS(11376), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170814] = 5, + [186761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6466), 1, + ACTIONS(11378), 1, anon_sym_RPAREN, - ACTIONS(6464), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2820), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170833] = 5, + [186780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6470), 1, + ACTIONS(11382), 1, anon_sym_RPAREN, - ACTIONS(6468), 2, + ACTIONS(11380), 2, sym__ws, sym_comment, - STATE(2821), 3, + STATE(3708), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170852] = 5, + [186799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6474), 1, + ACTIONS(11386), 1, anon_sym_RPAREN, - ACTIONS(6472), 2, + ACTIONS(11384), 2, sym__ws, sym_comment, - STATE(2823), 3, + STATE(3531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170871] = 5, + [186818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6476), 1, + ACTIONS(11388), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170890] = 5, + [186837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6480), 1, + ACTIONS(11390), 1, anon_sym_RPAREN, - ACTIONS(6478), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2826), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170909] = 5, + [186856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6484), 1, + ACTIONS(11394), 1, anon_sym_RPAREN, - ACTIONS(6482), 2, + ACTIONS(11392), 2, sym__ws, sym_comment, - STATE(2827), 3, + STATE(3617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170928] = 5, + [186875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6488), 1, + ACTIONS(11398), 1, anon_sym_RPAREN, - ACTIONS(6486), 2, + ACTIONS(11396), 2, sym__ws, sym_comment, - STATE(2829), 3, + STATE(3450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170947] = 5, + [186894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6490), 1, + ACTIONS(11400), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170966] = 5, + [186913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6492), 1, + ACTIONS(11402), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170985] = 5, + [186932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6496), 1, + ACTIONS(11406), 1, anon_sym_RPAREN, - ACTIONS(6494), 2, + ACTIONS(11404), 2, sym__ws, sym_comment, - STATE(2832), 3, + STATE(3429), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171004] = 5, + [186951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6498), 1, + ACTIONS(11410), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11408), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171023] = 5, + [186970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6500), 1, + ACTIONS(11412), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171042] = 5, + [186989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6504), 1, + ACTIONS(11416), 1, anon_sym_RPAREN, - ACTIONS(6502), 2, + ACTIONS(11414), 2, sym__ws, sym_comment, - STATE(2833), 3, + STATE(3453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171061] = 5, + [187008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6506), 1, + ACTIONS(11418), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171080] = 5, + [187027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6510), 1, + ACTIONS(11422), 1, anon_sym_RPAREN, - ACTIONS(6508), 2, + ACTIONS(11420), 2, sym__ws, sym_comment, - STATE(2834), 3, + STATE(3623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171099] = 5, + [187046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6514), 1, + ACTIONS(11426), 1, anon_sym_RPAREN, - ACTIONS(6512), 2, + ACTIONS(11424), 2, sym__ws, sym_comment, - STATE(2835), 3, + STATE(3432), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171118] = 5, + [187065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6516), 1, + ACTIONS(11428), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171137] = 5, + [187084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6518), 1, + ACTIONS(11432), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11430), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171156] = 5, + [187103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6522), 1, + ACTIONS(11436), 1, anon_sym_RPAREN, - ACTIONS(6520), 2, + ACTIONS(11434), 2, sym__ws, sym_comment, - STATE(2837), 3, + STATE(3460), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171175] = 5, + [187122] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6524), 1, + ACTIONS(11440), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11438), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171194] = 5, + [187141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6528), 1, + ACTIONS(11444), 1, anon_sym_RPAREN, - ACTIONS(6526), 2, + ACTIONS(11442), 2, sym__ws, sym_comment, - STATE(2838), 3, + STATE(3467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171213] = 5, + [187160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6532), 1, - anon_sym_RPAREN, - ACTIONS(6530), 2, + ACTIONS(11446), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2839), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171232] = 5, + [187179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6534), 1, + ACTIONS(11448), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171251] = 5, + [187198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6536), 1, + ACTIONS(11450), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171270] = 5, + [187217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6538), 1, + ACTIONS(11454), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11452), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3471), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171289] = 5, + [187236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6540), 1, + ACTIONS(11458), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11456), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171308] = 5, + [187255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6544), 1, + ACTIONS(11460), 1, anon_sym_RPAREN, - ACTIONS(6542), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2841), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171327] = 5, + [187274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6546), 1, + ACTIONS(11464), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11462), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3474), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171346] = 5, + [187293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6548), 1, + ACTIONS(11468), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11466), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171365] = 5, + [187312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6550), 1, + ACTIONS(11472), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11470), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171384] = 5, + [187331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6554), 1, + ACTIONS(11474), 1, anon_sym_RPAREN, - ACTIONS(6552), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2842), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171403] = 5, + [187350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6556), 1, + ACTIONS(11478), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11476), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171422] = 5, + [187369] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6558), 1, + ACTIONS(11482), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11480), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171441] = 5, + [187388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6560), 1, + ACTIONS(11486), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11484), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171460] = 5, + [187407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6562), 1, + ACTIONS(11488), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171479] = 5, + [187426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6566), 1, + ACTIONS(11490), 1, anon_sym_RPAREN, - ACTIONS(6564), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2976), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171498] = 5, + [187445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6570), 1, + ACTIONS(11494), 1, anon_sym_RPAREN, - ACTIONS(6568), 2, + ACTIONS(11492), 2, sym__ws, sym_comment, - STATE(2977), 3, + STATE(3486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171517] = 5, + [187464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6572), 1, + ACTIONS(11496), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171536] = 5, + [187483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6574), 1, + ACTIONS(11498), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171555] = 5, + [187502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6576), 1, + ACTIONS(11502), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11500), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3487), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171574] = 5, + [187521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6578), 1, + ACTIONS(11504), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171593] = 5, + [187540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6582), 1, + ACTIONS(11508), 1, anon_sym_RPAREN, - ACTIONS(6580), 2, + ACTIONS(11506), 2, sym__ws, sym_comment, - STATE(2979), 3, + STATE(3488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171612] = 5, + [187559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6584), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11512), 1, + anon_sym_RPAREN, + ACTIONS(11510), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3489), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171631] = 5, + [187578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6586), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11514), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171650] = 5, + [187597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6590), 1, - anon_sym_LPAREN, - ACTIONS(6588), 2, + ACTIONS(11516), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2852), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171669] = 5, + [187616] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6594), 1, - anon_sym_LPAREN, - ACTIONS(6592), 2, + ACTIONS(11520), 1, + anon_sym_RPAREN, + ACTIONS(11518), 2, sym__ws, sym_comment, - STATE(2853), 3, + STATE(3491), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171688] = 5, + [187635] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6596), 1, + ACTIONS(11522), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171707] = 5, + [187654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6598), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11526), 1, + anon_sym_RPAREN, + ACTIONS(11524), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171726] = 5, + [187673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6602), 1, - anon_sym_LPAREN, - ACTIONS(6600), 2, + ACTIONS(11530), 1, + anon_sym_RPAREN, + ACTIONS(11528), 2, sym__ws, sym_comment, - STATE(2857), 3, + STATE(3493), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171745] = 5, + [187692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6604), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11532), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171764] = 5, + [187711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6606), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11534), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171783] = 5, + [187730] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6610), 1, - anon_sym_LPAREN, - ACTIONS(6608), 2, + ACTIONS(11536), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2859), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171802] = 5, + [187749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6612), 1, + ACTIONS(11538), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171821] = 5, + [187768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6616), 1, - anon_sym_LPAREN, - ACTIONS(6614), 2, + ACTIONS(11542), 1, + anon_sym_RPAREN, + ACTIONS(11540), 2, sym__ws, sym_comment, - STATE(2860), 3, + STATE(3495), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171840] = 5, + [187787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6618), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11544), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [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, + [187806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6624), 1, - anon_sym_LPAREN, - ACTIONS(6622), 2, + ACTIONS(11546), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2864), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171895] = 5, + [187825] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6626), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11548), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171914] = 5, + [187844] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6628), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11552), 1, + anon_sym_RPAREN, + ACTIONS(11550), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171933] = 5, + [187863] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6632), 1, - anon_sym_LPAREN, - ACTIONS(6630), 2, + ACTIONS(11554), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2867), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171952] = 4, + [187882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(6634), 1, - anon_sym_COLON, - ACTIONS(4500), 5, - sym__ws, - sym_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - anon_sym_cl, - anon_sym_EQ, - [171969] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(6638), 1, - anon_sym_LPAREN, - ACTIONS(6636), 2, + ACTIONS(11556), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2868), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [171988] = 5, + [187901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6640), 1, + ACTIONS(11558), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172007] = 5, + [187920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6644), 1, + ACTIONS(11562), 1, anon_sym_RPAREN, - ACTIONS(6642), 2, + ACTIONS(11560), 2, sym__ws, sym_comment, - STATE(2799), 3, + STATE(3434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172026] = 5, + [187939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6648), 1, - anon_sym_LPAREN, - ACTIONS(6646), 2, + ACTIONS(11566), 1, + anon_sym_RPAREN, + ACTIONS(11564), 2, sym__ws, sym_comment, - STATE(2872), 3, + STATE(3437), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172045] = 5, + [187958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6650), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11570), 1, + anon_sym_LPAREN, + ACTIONS(11568), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3458), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172064] = 5, + [187977] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6652), 1, + ACTIONS(11574), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11572), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172083] = 5, + [187996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6654), 1, + ACTIONS(11576), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172102] = 5, + [188015] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6658), 1, + ACTIONS(11580), 1, anon_sym_LPAREN, - ACTIONS(6656), 2, + ACTIONS(11578), 2, sym__ws, sym_comment, - STATE(2876), 3, + STATE(3502), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172121] = 5, + [188034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6662), 1, - anon_sym_RPAREN, - ACTIONS(6660), 2, + ACTIONS(11582), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3206), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172140] = 5, + [188053] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6666), 1, + ACTIONS(11584), 1, anon_sym_LPAREN, - ACTIONS(6664), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2877), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172159] = 5, + [188072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6668), 1, + ACTIONS(11588), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11586), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3504), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172178] = 5, + [188091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6672), 1, + ACTIONS(11590), 1, anon_sym_RPAREN, - ACTIONS(6670), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3207), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172197] = 5, + [188110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6674), 1, + ACTIONS(11592), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172216] = 5, + [188129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6678), 1, + ACTIONS(11594), 1, anon_sym_RPAREN, - ACTIONS(6676), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3213), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172235] = 5, + [188148] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6682), 1, - anon_sym_RPAREN, - ACTIONS(6680), 2, + ACTIONS(11598), 1, + anon_sym_LPAREN, + ACTIONS(11596), 2, sym__ws, sym_comment, - STATE(2892), 3, + STATE(3505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172254] = 5, + [188167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6686), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - ACTIONS(6684), 2, + ACTIONS(11600), 2, sym__ws, sym_comment, - STATE(3215), 3, + STATE(3445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172273] = 5, + [188186] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6690), 1, - anon_sym_LPAREN, - ACTIONS(6688), 2, + ACTIONS(11606), 1, + anon_sym_RPAREN, + ACTIONS(11604), 2, sym__ws, sym_comment, - STATE(2881), 3, + STATE(3875), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172292] = 5, + [188205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6692), 1, + ACTIONS(11608), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172311] = 5, + [188224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6696), 1, - anon_sym_RPAREN, - ACTIONS(6694), 2, + ACTIONS(11612), 1, + anon_sym_LPAREN, + ACTIONS(11610), 2, sym__ws, sym_comment, - STATE(2893), 3, + STATE(3513), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172330] = 5, + [188243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6700), 1, - anon_sym_RPAREN, - ACTIONS(6698), 2, + ACTIONS(11614), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3217), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172349] = 5, + [188262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6704), 1, + ACTIONS(11618), 1, anon_sym_RPAREN, - ACTIONS(6702), 2, + ACTIONS(11616), 2, sym__ws, sym_comment, - STATE(2883), 3, + STATE(3507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172368] = 5, + [188281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6706), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11620), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172387] = 5, + [188300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6708), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11624), 1, + anon_sym_LPAREN, + ACTIONS(11622), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172406] = 5, + [188319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6712), 1, + ACTIONS(11628), 1, anon_sym_RPAREN, - ACTIONS(6710), 2, + ACTIONS(11626), 2, sym__ws, sym_comment, - STATE(2899), 3, + STATE(3508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172425] = 5, + [188338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6716), 1, - anon_sym_RPAREN, - ACTIONS(6714), 2, + ACTIONS(11632), 1, + anon_sym_LPAREN, + ACTIONS(11630), 2, sym__ws, sym_comment, - STATE(2900), 3, + STATE(3517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172444] = 5, + [188357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6720), 1, - anon_sym_RPAREN, - ACTIONS(6718), 2, + ACTIONS(11634), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172463] = 5, + [188376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6724), 1, - anon_sym_RPAREN, - ACTIONS(6722), 2, + ACTIONS(11638), 1, + anon_sym_LPAREN, + ACTIONS(11636), 2, sym__ws, sym_comment, - STATE(2907), 3, + STATE(3521), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172482] = 5, + [188395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6728), 1, + ACTIONS(11640), 1, anon_sym_RPAREN, - ACTIONS(6726), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3222), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172501] = 5, + [188414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6730), 1, + ACTIONS(11644), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11642), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172520] = 5, + [188433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6732), 1, + ACTIONS(11646), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172539] = 5, + [188452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6736), 1, + ACTIONS(11648), 1, anon_sym_RPAREN, - ACTIONS(6734), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2911), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172558] = 5, + [188471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6740), 1, + ACTIONS(11652), 1, anon_sym_RPAREN, - ACTIONS(6738), 2, + ACTIONS(11650), 2, sym__ws, sym_comment, - STATE(2912), 3, + STATE(3523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172577] = 5, + [188490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6742), 1, + ACTIONS(11654), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172596] = 5, + [188509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6746), 1, - anon_sym_RPAREN, - ACTIONS(6744), 2, + ACTIONS(11656), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2914), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172615] = 5, + [188528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6750), 1, - anon_sym_RPAREN, - ACTIONS(6748), 2, + ACTIONS(11658), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2915), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172634] = 5, + [188547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6754), 1, + ACTIONS(11660), 1, anon_sym_RPAREN, - ACTIONS(6752), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2917), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172653] = 5, + [188566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6756), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11664), 1, + anon_sym_LPAREN, + ACTIONS(11662), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172672] = 5, + [188585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6760), 1, + ACTIONS(11668), 1, anon_sym_RPAREN, - ACTIONS(6758), 2, + ACTIONS(11666), 2, sym__ws, sym_comment, - STATE(2920), 3, + STATE(3713), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172691] = 5, + [188604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6764), 1, - anon_sym_RPAREN, - ACTIONS(6762), 2, + ACTIONS(11672), 1, + anon_sym_LPAREN, + ACTIONS(11670), 2, sym__ws, sym_comment, - STATE(2921), 3, + STATE(3530), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172710] = 5, + [188623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6768), 1, - anon_sym_RPAREN, - ACTIONS(6766), 2, + ACTIONS(11674), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2923), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172729] = 5, + [188642] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6770), 1, + ACTIONS(11678), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11676), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3833), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172748] = 5, + [188661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6772), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11682), 1, + anon_sym_LPAREN, + ACTIONS(11680), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172767] = 5, + [188680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6776), 1, - anon_sym_RPAREN, - ACTIONS(6774), 2, + ACTIONS(11684), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2926), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172786] = 5, + [188699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6778), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11686), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172805] = 5, + [188718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6780), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11690), 1, + anon_sym_LPAREN, + ACTIONS(11688), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172824] = 5, + [188737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6784), 1, - anon_sym_RPAREN, - ACTIONS(6782), 2, + ACTIONS(11694), 1, + anon_sym_LPAREN, + ACTIONS(11692), 2, sym__ws, sym_comment, - STATE(2927), 3, + STATE(3539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172843] = 5, + [188756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6786), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11696), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172862] = 5, + [188775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6790), 1, + ACTIONS(11700), 1, anon_sym_RPAREN, - ACTIONS(6788), 2, + ACTIONS(11698), 2, sym__ws, sym_comment, - STATE(2928), 3, + STATE(3547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172881] = 5, + [188794] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6794), 1, - anon_sym_RPAREN, - ACTIONS(6792), 2, + ACTIONS(11704), 1, + anon_sym_LPAREN, + ACTIONS(11702), 2, sym__ws, sym_comment, - STATE(2929), 3, + STATE(3542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172900] = 5, + [188813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6796), 1, + ACTIONS(11708), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11706), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172919] = 5, + [188832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6798), 1, + ACTIONS(11712), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11710), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3847), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172938] = 5, + [188851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6802), 1, + ACTIONS(11714), 1, anon_sym_RPAREN, - ACTIONS(6800), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2931), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172957] = 5, + [188870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6804), 1, + ACTIONS(11718), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11716), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172976] = 5, + [188889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6808), 1, + ACTIONS(11722), 1, anon_sym_RPAREN, - ACTIONS(6806), 2, + ACTIONS(11720), 2, sym__ws, sym_comment, - STATE(2932), 3, + STATE(3554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [172995] = 5, + [188908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6812), 1, + ACTIONS(11726), 1, anon_sym_RPAREN, - ACTIONS(6810), 2, + ACTIONS(11724), 2, sym__ws, sym_comment, - STATE(2933), 3, + STATE(3557), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173014] = 5, + [188927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6814), 1, + ACTIONS(11730), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11728), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173033] = 5, + [188946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6816), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11732), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173052] = 5, + [188965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6818), 1, + ACTIONS(11734), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173071] = 5, + [188984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6820), 1, + ACTIONS(11736), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173090] = 5, + [189003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6824), 1, + ACTIONS(11740), 1, anon_sym_RPAREN, - ACTIONS(6822), 2, + ACTIONS(11738), 2, sym__ws, sym_comment, - STATE(2935), 3, + STATE(3565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173109] = 5, + [189022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6826), 1, + ACTIONS(11744), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11742), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3566), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173128] = 5, + [189041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6828), 1, + ACTIONS(11746), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173147] = 5, + [189060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6830), 1, + ACTIONS(11750), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11748), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173166] = 5, + [189079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6834), 1, + ACTIONS(11754), 1, anon_sym_RPAREN, - ACTIONS(6832), 2, + ACTIONS(11752), 2, sym__ws, sym_comment, - STATE(2936), 3, + STATE(3569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173185] = 5, + [189098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6836), 1, + ACTIONS(11758), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11756), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3571), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173204] = 5, + [189117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6838), 1, + ACTIONS(11760), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173223] = 5, + [189136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6840), 1, + ACTIONS(11764), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11762), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173242] = 5, + [189155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6844), 1, + ACTIONS(11768), 1, anon_sym_RPAREN, - ACTIONS(6842), 2, + ACTIONS(11766), 2, sym__ws, sym_comment, - STATE(2856), 3, + STATE(3575), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173261] = 5, + [189174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6848), 1, + ACTIONS(11772), 1, anon_sym_RPAREN, - ACTIONS(6846), 2, + ACTIONS(11770), 2, sym__ws, sym_comment, - STATE(2862), 3, + STATE(3577), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173280] = 5, + [189193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6850), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11774), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173299] = 5, + [189212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6854), 1, - anon_sym_LPAREN, - ACTIONS(6852), 2, + ACTIONS(11776), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2888), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173318] = 5, + [189231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6858), 1, + ACTIONS(11780), 1, anon_sym_RPAREN, - ACTIONS(6856), 2, + ACTIONS(11778), 2, sym__ws, sym_comment, - STATE(3226), 3, + STATE(3580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173337] = 5, + [189250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6862), 1, - anon_sym_LPAREN, - ACTIONS(6860), 2, + ACTIONS(11782), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2940), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173356] = 5, + [189269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6864), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11784), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173375] = 5, + [189288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6868), 1, - anon_sym_LPAREN, - ACTIONS(6866), 2, + ACTIONS(11788), 1, + anon_sym_RPAREN, + ACTIONS(11786), 2, sym__ws, sym_comment, - STATE(2944), 3, + STATE(3581), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173394] = 5, + [189307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6870), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11790), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173413] = 5, + [189326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6872), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11794), 1, + anon_sym_RPAREN, + ACTIONS(11792), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3582), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173432] = 5, + [189345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6876), 1, - anon_sym_LPAREN, - ACTIONS(6874), 2, + ACTIONS(11798), 1, + anon_sym_RPAREN, + ACTIONS(11796), 2, sym__ws, sym_comment, - STATE(2946), 3, + STATE(3583), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173451] = 5, + [189364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6880), 1, - anon_sym_LPAREN, - ACTIONS(6878), 2, + ACTIONS(11800), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2947), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173470] = 5, + [189383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6882), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11802), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173489] = 5, + [189402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6886), 1, - anon_sym_LPAREN, - ACTIONS(6884), 2, + ACTIONS(11806), 1, + anon_sym_RPAREN, + ACTIONS(11804), 2, sym__ws, sym_comment, - STATE(2950), 3, + STATE(3585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173508] = 5, + [189421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6888), 1, + ACTIONS(11808), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173527] = 5, + [189440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6890), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11812), 1, + anon_sym_RPAREN, + ACTIONS(11810), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173546] = 5, + [189459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6892), 1, + ACTIONS(11816), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11814), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3587), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173565] = 5, + [189478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6896), 1, + ACTIONS(11818), 1, anon_sym_RPAREN, - ACTIONS(6894), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2952), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173584] = 5, + [189497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6898), 1, + ACTIONS(11820), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173603] = 5, + [189516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6900), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11822), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173622] = 5, + [189535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6904), 1, - anon_sym_LPAREN, - ACTIONS(6902), 2, + ACTIONS(11824), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2953), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173641] = 5, + [189554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6908), 1, + ACTIONS(11828), 1, anon_sym_RPAREN, - ACTIONS(6906), 2, + ACTIONS(11826), 2, sym__ws, sym_comment, - STATE(3130), 3, + STATE(3589), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173660] = 5, + [189573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6912), 1, - anon_sym_LPAREN, - ACTIONS(6910), 2, + ACTIONS(11830), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2957), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173679] = 5, + [189592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6914), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11832), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173698] = 5, + [189611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6918), 1, - anon_sym_LPAREN, - ACTIONS(6916), 2, + ACTIONS(11834), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2961), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173717] = 5, + [189630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6920), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11838), 1, + anon_sym_RPAREN, + ACTIONS(11836), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173736] = 5, + [189649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6924), 1, + ACTIONS(11840), 1, anon_sym_RPAREN, - ACTIONS(6922), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3219), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173755] = 5, + [189668] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6926), 1, + ACTIONS(11842), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173774] = 5, + [189687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6928), 1, + ACTIONS(11846), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11844), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173793] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(6930), 1, - anon_sym_COLON, - ACTIONS(4500), 5, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - anon_sym_EQ, - [173810] = 5, + [189706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6932), 1, + ACTIONS(11850), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11848), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173829] = 5, + [189725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6936), 1, + ACTIONS(11854), 1, anon_sym_LPAREN, - ACTIONS(6934), 2, + ACTIONS(11852), 2, sym__ws, sym_comment, - STATE(2963), 3, + STATE(3776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173848] = 5, + [189744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6940), 1, + ACTIONS(11856), 1, anon_sym_LPAREN, - ACTIONS(6938), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2968), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173867] = 5, + [189763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6942), 1, + ACTIONS(11860), 1, anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(11858), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3552), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173886] = 5, + [189782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6946), 1, + ACTIONS(11864), 1, anon_sym_LPAREN, - ACTIONS(6944), 2, + ACTIONS(11862), 2, sym__ws, sym_comment, - STATE(2971), 3, + STATE(3594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173905] = 5, + [189801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6950), 1, - anon_sym_RPAREN, - ACTIONS(6948), 2, + ACTIONS(11866), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3230), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173924] = 5, + [189820] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6952), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11870), 1, + anon_sym_LPAREN, + ACTIONS(11868), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173943] = 5, + [189839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6956), 1, - anon_sym_RPAREN, - ACTIONS(6954), 2, + ACTIONS(11872), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2843), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173962] = 5, + [189858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6958), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11874), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [173981] = 5, + [189877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6960), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11878), 1, + anon_sym_LPAREN, + ACTIONS(11876), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174000] = 5, + [189896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6964), 1, - anon_sym_RPAREN, - ACTIONS(6962), 2, + ACTIONS(11882), 1, + anon_sym_LPAREN, + ACTIONS(11880), 2, sym__ws, sym_comment, - STATE(2980), 3, + STATE(3600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174019] = 5, + [189915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6966), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11884), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174038] = 5, + [189934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6968), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11888), 1, + anon_sym_LPAREN, + ACTIONS(11886), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174057] = 4, + [189953] = 5, 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, + ACTIONS(10915), 1, anon_sym_POUND_, - anon_sym_cl, - anon_sym_EQ, - [174091] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(6976), 1, - anon_sym_RPAREN, - ACTIONS(6974), 2, + ACTIONS(11890), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2987), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174110] = 5, + [189972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6978), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11892), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174129] = 5, + [189991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6982), 1, - anon_sym_RPAREN, - ACTIONS(6980), 2, + ACTIONS(11896), 1, + anon_sym_LPAREN, + ACTIONS(11894), 2, sym__ws, sym_comment, - STATE(2875), 3, + STATE(3605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174148] = 5, + [190010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6986), 1, - anon_sym_RPAREN, - ACTIONS(6984), 2, + ACTIONS(11900), 1, + anon_sym_LPAREN, + ACTIONS(11898), 2, sym__ws, sym_comment, - STATE(2954), 3, + STATE(3606), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174167] = 5, + [190029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6988), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11902), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174186] = 5, + [190048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6992), 1, - anon_sym_RPAREN, - ACTIONS(6990), 2, + ACTIONS(11906), 1, + anon_sym_LPAREN, + ACTIONS(11904), 2, sym__ws, sym_comment, - STATE(2993), 3, + STATE(3609), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174205] = 5, + [190067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(6996), 1, + ACTIONS(11908), 1, anon_sym_RPAREN, - ACTIONS(6994), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2994), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174224] = 5, + [190086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7000), 1, + ACTIONS(11912), 1, anon_sym_RPAREN, - ACTIONS(6998), 2, + ACTIONS(11910), 2, sym__ws, sym_comment, - STATE(2997), 3, + STATE(3824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174243] = 5, + [190105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7004), 1, - anon_sym_RPAREN, - ACTIONS(7002), 2, + ACTIONS(11914), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3001), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174262] = 5, + [190124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7006), 1, + ACTIONS(11918), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11916), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174281] = 5, + [190143] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7008), 1, + ACTIONS(11920), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174300] = 5, + [190162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7010), 1, + ACTIONS(11922), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174319] = 5, + [190181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7014), 1, + ACTIONS(11924), 1, anon_sym_RPAREN, - ACTIONS(7012), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3005), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174338] = 5, + [190200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7018), 1, + ACTIONS(11928), 1, anon_sym_RPAREN, - ACTIONS(7016), 2, + ACTIONS(11926), 2, sym__ws, sym_comment, - STATE(3006), 3, + STATE(3428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174357] = 5, + [190219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7020), 1, + ACTIONS(11930), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174376] = 5, + [190238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7024), 1, + ACTIONS(11934), 1, anon_sym_RPAREN, - ACTIONS(7022), 2, + ACTIONS(11932), 2, sym__ws, sym_comment, - STATE(3008), 3, + STATE(3440), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174395] = 5, + [190257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7028), 1, + ACTIONS(11938), 1, anon_sym_RPAREN, - ACTIONS(7026), 2, + ACTIONS(11936), 2, sym__ws, sym_comment, - STATE(3009), 3, + STATE(3441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174414] = 5, + [190276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7032), 1, + ACTIONS(11940), 1, anon_sym_RPAREN, - ACTIONS(7030), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3011), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174433] = 5, + [190295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7034), 1, + ACTIONS(11942), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174452] = 5, + [190314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7038), 1, + ACTIONS(11946), 1, anon_sym_RPAREN, - ACTIONS(7036), 2, + ACTIONS(11944), 2, sym__ws, sym_comment, - STATE(3014), 3, + STATE(3839), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174471] = 5, + [190333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7042), 1, + ACTIONS(11948), 1, anon_sym_RPAREN, - ACTIONS(7040), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3015), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174490] = 5, + [190352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7046), 1, + ACTIONS(11950), 1, anon_sym_RPAREN, - ACTIONS(7044), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3017), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174509] = 5, + [190371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7048), 1, + ACTIONS(11952), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174528] = 5, + [190390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7050), 1, + ACTIONS(11956), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11954), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174547] = 5, + [190409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7054), 1, + ACTIONS(11958), 1, anon_sym_RPAREN, - ACTIONS(7052), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3020), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174566] = 5, + [190428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7056), 1, + ACTIONS(11960), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174585] = 5, + [190447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7058), 1, + ACTIONS(11964), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11962), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3619), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174604] = 5, + [190466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7062), 1, + ACTIONS(11968), 1, anon_sym_RPAREN, - ACTIONS(7060), 2, + ACTIONS(11966), 2, sym__ws, sym_comment, - STATE(3021), 3, + STATE(3616), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174623] = 5, + [190485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7064), 1, + ACTIONS(11972), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11970), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174642] = 5, + [190504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7068), 1, + ACTIONS(11974), 1, anon_sym_RPAREN, - ACTIONS(7066), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3022), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174661] = 5, + [190523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7072), 1, + ACTIONS(11978), 1, anon_sym_RPAREN, - ACTIONS(7070), 2, + ACTIONS(11976), 2, sym__ws, sym_comment, - STATE(3023), 3, + STATE(3611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174680] = 5, + [190542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7074), 1, + ACTIONS(11982), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11980), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174699] = 5, + [190561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7076), 1, + ACTIONS(11986), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11984), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174718] = 5, + [190580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7080), 1, + ACTIONS(11990), 1, anon_sym_RPAREN, - ACTIONS(7078), 2, + ACTIONS(11988), 2, sym__ws, sym_comment, - STATE(3025), 3, + STATE(3627), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174737] = 5, + [190599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7082), 1, + ACTIONS(11994), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(11992), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174756] = 5, + [190618] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7086), 1, + ACTIONS(11996), 1, anon_sym_RPAREN, - ACTIONS(7084), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3026), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174775] = 5, + [190637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7090), 1, + ACTIONS(11998), 1, anon_sym_RPAREN, - ACTIONS(7088), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3027), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174794] = 5, + [190656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7092), 1, + ACTIONS(12002), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12000), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174813] = 5, + [190675] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7094), 1, + ACTIONS(12006), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12004), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174832] = 5, + [190694] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7096), 1, + ACTIONS(12010), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12008), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174851] = 5, + [190713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7098), 1, + ACTIONS(12014), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12012), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174870] = 5, + [190732] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7102), 1, + ACTIONS(12018), 1, anon_sym_RPAREN, - ACTIONS(7100), 2, + ACTIONS(12016), 2, sym__ws, sym_comment, - STATE(3029), 3, + STATE(3689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174889] = 5, + [190751] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7104), 1, + ACTIONS(12020), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174908] = 5, + [190770] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7106), 1, + ACTIONS(12022), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174927] = 5, + [190789] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7108), 1, + ACTIONS(12026), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12024), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3659), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174946] = 5, + [190808] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7112), 1, + ACTIONS(12030), 1, anon_sym_RPAREN, - ACTIONS(7110), 2, + ACTIONS(12028), 2, sym__ws, sym_comment, - STATE(2798), 3, + STATE(3660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174965] = 5, + [190827] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7114), 1, + ACTIONS(12032), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [174984] = 5, + [190846] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7116), 1, + ACTIONS(12036), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12034), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3662), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175003] = 5, + [190865] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7118), 1, + ACTIONS(12040), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12038), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175022] = 5, + [190884] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7120), 1, + ACTIONS(12042), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175041] = 5, + [190903] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7122), 1, + ACTIONS(12044), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175060] = 5, + [190922] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7126), 1, + ACTIONS(12048), 1, anon_sym_RPAREN, - ACTIONS(7124), 2, + ACTIONS(12046), 2, sym__ws, sym_comment, - STATE(3036), 3, + STATE(3668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175079] = 5, + [190941] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7128), 1, + ACTIONS(12052), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12050), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3669), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175098] = 5, + [190960] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7130), 1, + ACTIONS(12056), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12054), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3671), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175117] = 5, + [190979] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7134), 1, + ACTIONS(12058), 1, anon_sym_RPAREN, - ACTIONS(7132), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3046), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175136] = 5, + [190998] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7136), 1, + ACTIONS(12060), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175155] = 5, + [191017] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7140), 1, + ACTIONS(12064), 1, anon_sym_RPAREN, - ACTIONS(7138), 2, + ACTIONS(12062), 2, sym__ws, sym_comment, - STATE(2956), 3, + STATE(3674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175174] = 5, + [191036] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7144), 1, + ACTIONS(12066), 1, anon_sym_RPAREN, - ACTIONS(7142), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2965), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175193] = 5, + [191055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7146), 1, + ACTIONS(12068), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175212] = 5, + [191074] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7150), 1, + ACTIONS(12072), 1, anon_sym_RPAREN, - ACTIONS(7148), 2, + ACTIONS(12070), 2, sym__ws, sym_comment, - STATE(2966), 3, + STATE(3675), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175231] = 5, + [191093] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7154), 1, + ACTIONS(12074), 1, anon_sym_RPAREN, - ACTIONS(7152), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3047), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175250] = 5, + [191112] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7158), 1, + ACTIONS(12078), 1, anon_sym_RPAREN, - ACTIONS(7156), 2, + ACTIONS(12076), 2, sym__ws, sym_comment, - STATE(3050), 3, + STATE(3676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175269] = 5, + [191131] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7162), 1, + ACTIONS(12082), 1, anon_sym_RPAREN, - ACTIONS(7160), 2, + ACTIONS(12080), 2, sym__ws, sym_comment, - STATE(3054), 3, + STATE(3677), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175288] = 5, + [191150] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7164), 1, + ACTIONS(12084), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175307] = 5, + [191169] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7166), 1, + ACTIONS(12086), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175326] = 5, + [191188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7170), 1, + ACTIONS(12090), 1, anon_sym_RPAREN, - ACTIONS(7168), 2, + ACTIONS(12088), 2, sym__ws, sym_comment, - STATE(3059), 3, + STATE(3679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175345] = 5, + [191207] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7174), 1, + ACTIONS(12092), 1, anon_sym_RPAREN, - ACTIONS(7172), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3139), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175364] = 5, + [191226] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7176), 1, + ACTIONS(12096), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12094), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175383] = 5, + [191245] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7180), 1, + ACTIONS(12100), 1, anon_sym_RPAREN, - ACTIONS(7178), 2, + ACTIONS(12098), 2, sym__ws, sym_comment, - STATE(3067), 3, + STATE(3681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175402] = 5, + [191264] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7184), 1, + ACTIONS(12102), 1, anon_sym_RPAREN, - ACTIONS(7182), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3068), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175421] = 5, + [191283] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7188), 1, + ACTIONS(12104), 1, anon_sym_RPAREN, - ACTIONS(7186), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3072), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175440] = 5, + [191302] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7190), 1, + ACTIONS(12106), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175459] = 5, + [191321] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7194), 1, + ACTIONS(12108), 1, anon_sym_RPAREN, - ACTIONS(7192), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3078), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175478] = 5, + [191340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7196), 1, + ACTIONS(12112), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12110), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175497] = 5, + [191359] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7200), 1, + ACTIONS(12114), 1, anon_sym_RPAREN, - ACTIONS(7198), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3079), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175516] = 5, + [191378] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7204), 1, + ACTIONS(12116), 1, anon_sym_RPAREN, - ACTIONS(7202), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3086), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175535] = 5, + [191397] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7206), 1, + ACTIONS(12118), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175554] = 5, + [191416] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7210), 1, + ACTIONS(12122), 1, anon_sym_RPAREN, - ACTIONS(7208), 2, + ACTIONS(12120), 2, sym__ws, sym_comment, - STATE(2992), 3, + STATE(3684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175573] = 5, + [191435] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7212), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(12124), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175592] = 5, + [191454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7216), 1, + ACTIONS(12126), 1, anon_sym_RPAREN, - ACTIONS(7214), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3238), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175611] = 5, + [191473] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7220), 1, + ACTIONS(12128), 1, anon_sym_RPAREN, - ACTIONS(7218), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2974), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175630] = 5, + [191492] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7222), 2, + ACTIONS(12132), 1, + anon_sym_RPAREN, + ACTIONS(12130), 2, sym__ws, sym_comment, - STATE(3124), 3, + STATE(3690), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175649] = 5, + [191511] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7226), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(12136), 1, + anon_sym_RPAREN, + ACTIONS(12134), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3693), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175668] = 5, + [191530] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7230), 1, + ACTIONS(12140), 1, anon_sym_RPAREN, - ACTIONS(7228), 2, + ACTIONS(12138), 2, sym__ws, sym_comment, - STATE(3091), 3, + STATE(3703), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175687] = 5, + [191549] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7232), 1, + ACTIONS(12142), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175706] = 5, + [191568] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7234), 1, + ACTIONS(12144), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175725] = 5, + [191587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7236), 1, + ACTIONS(12148), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12146), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3715), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175744] = 5, + [191606] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7240), 1, + ACTIONS(12150), 1, anon_sym_RPAREN, - ACTIONS(7238), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175763] = 5, + [191625] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7244), 1, + ACTIONS(12152), 1, anon_sym_RPAREN, - ACTIONS(7242), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3235), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175782] = 5, + [191644] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7246), 1, + ACTIONS(12156), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12154), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175801] = 5, + [191663] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7250), 1, + ACTIONS(12158), 1, anon_sym_RPAREN, - ACTIONS(7248), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3095), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175820] = 5, + [191682] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7254), 1, + ACTIONS(12162), 1, anon_sym_RPAREN, - ACTIONS(7252), 2, + ACTIONS(12160), 2, sym__ws, sym_comment, - STATE(3032), 3, + STATE(3840), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175839] = 5, + [191701] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7258), 1, + ACTIONS(12164), 1, anon_sym_RPAREN, - ACTIONS(7256), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3097), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175858] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - 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, + [191720] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7264), 1, + ACTIONS(12168), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12166), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3719), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175896] = 5, + [191739] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7266), 1, + ACTIONS(12172), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12170), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175915] = 5, + [191758] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7268), 1, + ACTIONS(12176), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12174), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175934] = 5, + [191777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7272), 1, + ACTIONS(12180), 1, anon_sym_RPAREN, - ACTIONS(7270), 2, + ACTIONS(12178), 2, sym__ws, sym_comment, - STATE(3035), 3, + STATE(3766), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175953] = 5, + [191796] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7274), 1, + ACTIONS(12184), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12182), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175972] = 5, + [191815] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7276), 1, + ACTIONS(12186), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175991] = 5, + [191834] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7280), 1, + ACTIONS(12190), 1, anon_sym_RPAREN, - ACTIONS(7278), 2, + ACTIONS(12188), 2, sym__ws, sym_comment, - STATE(3038), 3, + STATE(3849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176010] = 5, + [191853] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7282), 1, + ACTIONS(12194), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12192), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3724), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176029] = 5, + [191872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7286), 1, + ACTIONS(12198), 1, anon_sym_RPAREN, - ACTIONS(7284), 2, + ACTIONS(12196), 2, sym__ws, sym_comment, - STATE(3100), 3, + STATE(3725), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176048] = 5, + [191891] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7288), 1, + ACTIONS(12202), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12200), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3750), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176067] = 5, + [191910] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7290), 1, + ACTIONS(12204), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176086] = 5, + [191929] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7294), 1, + ACTIONS(12208), 1, anon_sym_RPAREN, - ACTIONS(7292), 2, + ACTIONS(12206), 2, sym__ws, sym_comment, - STATE(3101), 3, + STATE(3850), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176105] = 5, + [191948] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7298), 1, + ACTIONS(12210), 1, anon_sym_RPAREN, - ACTIONS(7296), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3106), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176124] = 5, + [191967] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7302), 1, + ACTIONS(12214), 1, anon_sym_RPAREN, - ACTIONS(7300), 2, + ACTIONS(12212), 2, sym__ws, sym_comment, - STATE(3041), 3, + STATE(3851), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176143] = 5, + [191986] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7304), 1, + ACTIONS(12218), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12216), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176162] = 5, + [192005] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7308), 1, + ACTIONS(12220), 1, anon_sym_RPAREN, - ACTIONS(7306), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2937), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176181] = 5, + [192024] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7312), 1, + ACTIONS(12224), 1, anon_sym_RPAREN, - ACTIONS(7310), 2, + ACTIONS(12222), 2, sym__ws, sym_comment, - STATE(3056), 3, + STATE(3728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176200] = 5, + [192043] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7314), 1, + ACTIONS(12226), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176219] = 5, + [192062] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7316), 1, + ACTIONS(12228), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176238] = 5, + [192081] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7318), 1, + ACTIONS(12232), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12230), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3732), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176257] = 5, + [192100] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7320), 1, + ACTIONS(12234), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176276] = 5, + [192119] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7324), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, - ACTIONS(7322), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3077), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176295] = 5, + [192138] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7328), 1, + ACTIONS(12240), 1, anon_sym_RPAREN, - ACTIONS(7326), 2, + ACTIONS(12238), 2, sym__ws, sym_comment, - STATE(3108), 3, + STATE(3733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176314] = 5, + [192157] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7330), 1, + ACTIONS(12242), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176333] = 5, + [192176] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7332), 1, + ACTIONS(12246), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12244), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3734), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176352] = 5, + [192195] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7336), 1, + ACTIONS(12250), 1, anon_sym_RPAREN, - ACTIONS(7334), 2, + ACTIONS(12248), 2, sym__ws, sym_comment, - STATE(3081), 3, + STATE(3735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176371] = 5, + [192214] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7340), 1, + ACTIONS(12252), 1, anon_sym_RPAREN, - ACTIONS(7338), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3082), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176390] = 5, + [192233] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7342), 1, + ACTIONS(12254), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176409] = 5, + [192252] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7346), 1, + ACTIONS(12256), 1, anon_sym_RPAREN, - ACTIONS(7344), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3084), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176428] = 5, + [192271] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7348), 1, + ACTIONS(12260), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12258), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3737), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176447] = 5, + [192290] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7352), 1, + ACTIONS(12262), 1, anon_sym_RPAREN, - ACTIONS(7350), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3113), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176466] = 5, + [192309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7354), 1, + ACTIONS(12264), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176485] = 5, + [192328] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7358), 1, + ACTIONS(12268), 1, anon_sym_RPAREN, - ACTIONS(7356), 2, + ACTIONS(12266), 2, sym__ws, sym_comment, - STATE(3087), 3, + STATE(3739), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176504] = 5, + [192347] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7360), 1, + ACTIONS(12272), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12270), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176523] = 5, + [192366] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7362), 1, + ACTIONS(12274), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176542] = 5, + [192385] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7366), 1, + ACTIONS(12276), 1, anon_sym_RPAREN, - ACTIONS(7364), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3096), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176561] = 5, + [192404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7368), 1, + ACTIONS(12278), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176580] = 5, + [192423] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7372), 1, + ACTIONS(12280), 1, anon_sym_RPAREN, - ACTIONS(7370), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3104), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176599] = 5, + [192442] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7376), 1, + ACTIONS(12284), 1, anon_sym_RPAREN, - ACTIONS(7374), 2, + ACTIONS(12282), 2, sym__ws, sym_comment, - STATE(3110), 3, + STATE(3743), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176618] = 5, + [192461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7380), 1, - anon_sym_LPAREN, - ACTIONS(7378), 2, + ACTIONS(12286), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3061), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176637] = 5, + [192480] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7384), 1, - anon_sym_LPAREN, - ACTIONS(7382), 2, + ACTIONS(12288), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3065), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176656] = 5, + [192499] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7388), 1, + ACTIONS(12290), 1, anon_sym_RPAREN, - ACTIONS(7386), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3176), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176675] = 5, + [192518] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7392), 1, + ACTIONS(12292), 1, anon_sym_RPAREN, - ACTIONS(7390), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3111), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176694] = 5, + [192537] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7394), 1, + ACTIONS(12294), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176713] = 5, + [192556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7396), 1, + ACTIONS(12298), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12296), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3747), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176732] = 5, + [192575] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7398), 1, + ACTIONS(12300), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176751] = 5, + [192594] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7402), 1, + ACTIONS(12302), 1, anon_sym_RPAREN, - ACTIONS(7400), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3122), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176770] = 5, + [192613] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7404), 1, - anon_sym_LPAREN, - ACTIONS(5935), 2, + ACTIONS(12306), 1, + anon_sym_RPAREN, + ACTIONS(12304), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3782), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176789] = 5, + [192632] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7408), 1, + ACTIONS(12310), 1, anon_sym_RPAREN, - ACTIONS(7406), 2, + ACTIONS(12308), 2, sym__ws, sym_comment, - STATE(3168), 3, + STATE(3710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176808] = 5, + [192651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7412), 1, + ACTIONS(12312), 1, anon_sym_RPAREN, - ACTIONS(7410), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2850), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176827] = 5, + [192670] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7416), 1, + ACTIONS(12316), 1, anon_sym_RPAREN, - ACTIONS(7414), 2, + ACTIONS(12314), 2, sym__ws, sym_comment, - STATE(2849), 3, + STATE(3629), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176846] = 5, + [192689] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7418), 1, + ACTIONS(12318), 1, anon_sym_loop, - STATE(1492), 1, + STATE(1832), 1, sym_sym_lit, - ACTIONS(7262), 4, + ACTIONS(12320), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [176865] = 5, + [192708] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7420), 1, + ACTIONS(12322), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176884] = 5, + [192727] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7422), 1, + ACTIONS(12326), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12324), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176903] = 5, + [192746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7426), 1, + ACTIONS(12330), 1, anon_sym_RPAREN, - ACTIONS(7424), 2, + ACTIONS(12328), 2, sym__ws, sym_comment, - STATE(3031), 3, + STATE(3685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176922] = 5, + [192765] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7430), 1, + ACTIONS(12334), 1, anon_sym_RPAREN, - ACTIONS(7428), 2, + ACTIONS(12332), 2, sym__ws, sym_comment, - STATE(3253), 3, + STATE(3630), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176941] = 5, + [192784] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7432), 1, + ACTIONS(12336), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176960] = 5, + [192803] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(12340), 1, + anon_sym_RPAREN, + ACTIONS(12338), 2, + sym__ws, + sym_comment, + STATE(3528), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [192822] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7436), 1, + ACTIONS(12342), 1, anon_sym_RPAREN, - ACTIONS(7434), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2848), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176979] = 5, + [192841] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7438), 1, + ACTIONS(12344), 1, anon_sym_loop, - STATE(1492), 1, + STATE(1832), 1, sym_sym_lit, - ACTIONS(7262), 4, + ACTIONS(12320), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [176998] = 5, + [192860] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7440), 1, + ACTIONS(12346), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177017] = 5, + [192879] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7442), 1, + ACTIONS(12350), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12348), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3526), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177036] = 5, + [192898] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7446), 1, + ACTIONS(12352), 1, anon_sym_RPAREN, - ACTIONS(7444), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3033), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177055] = 5, + [192917] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7448), 1, + ACTIONS(12356), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12354), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177074] = 5, + [192936] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7450), 1, + ACTIONS(12360), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12358), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3634), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177093] = 5, + [192955] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7452), 1, + ACTIONS(12362), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177112] = 5, + [192974] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7454), 1, + ACTIONS(12366), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12364), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177131] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7456), 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, - [177150] = 5, + [192993] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7460), 1, + ACTIONS(12370), 1, anon_sym_RPAREN, - ACTIONS(7458), 2, + ACTIONS(12368), 2, sym__ws, sym_comment, - STATE(3160), 3, + STATE(3509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177169] = 5, + [193012] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7464), 1, + ACTIONS(12372), 1, anon_sym_RPAREN, - ACTIONS(7462), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3250), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177188] = 5, + [193031] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(7466), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, - sym__ws, - sym_comment, - STATE(2256), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [177207] = 5, + ACTIONS(12374), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193050] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7468), 1, + ACTIONS(12376), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177226] = 5, + [193069] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7472), 1, + ACTIONS(12380), 1, anon_sym_RPAREN, - ACTIONS(7470), 2, + ACTIONS(12378), 2, sym__ws, sym_comment, - STATE(3146), 3, + STATE(3716), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177245] = 5, + [193088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7474), 1, + ACTIONS(12384), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12382), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177264] = 5, + [193107] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7476), 1, + ACTIONS(12388), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12386), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3760), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177283] = 5, + [193126] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7478), 1, + ACTIONS(12390), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177302] = 5, + [193145] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7482), 1, + ACTIONS(12394), 1, anon_sym_RPAREN, - ACTIONS(7480), 2, + ACTIONS(12392), 2, sym__ws, sym_comment, - STATE(3147), 3, + STATE(3772), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177321] = 5, + [193164] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7484), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12396), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177340] = 5, + [193183] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7486), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12400), 1, + anon_sym_LPAREN, + ACTIONS(12398), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177359] = 5, + [193202] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7488), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12402), 1, + anon_sym_LPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177378] = 5, + [193221] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7490), 1, + ACTIONS(12406), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12404), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3779), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177397] = 5, + [193240] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(7494), 1, - anon_sym_RPAREN, - ACTIONS(7492), 2, - sym__ws, - sym_comment, - STATE(3149), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [177416] = 5, + ACTIONS(12408), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193259] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7498), 1, + ACTIONS(12410), 1, anon_sym_RPAREN, - ACTIONS(7496), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3150), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [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, + [193278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7502), 1, + ACTIONS(12414), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12412), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3785), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177471] = 5, + [193297] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7506), 1, + ACTIONS(12418), 1, anon_sym_RPAREN, - ACTIONS(7504), 2, + ACTIONS(12416), 2, sym__ws, sym_comment, - STATE(3189), 3, + STATE(3786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177490] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [193316] = 5, 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(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7510), 1, + ACTIONS(12420), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177528] = 5, + [193335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7514), 1, + ACTIONS(12424), 1, anon_sym_RPAREN, - ACTIONS(7512), 2, + ACTIONS(12422), 2, sym__ws, sym_comment, - STATE(3193), 3, + STATE(3789), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177547] = 5, + [193354] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7518), 1, + ACTIONS(12428), 1, anon_sym_RPAREN, - ACTIONS(7516), 2, + ACTIONS(12426), 2, sym__ws, sym_comment, - STATE(3151), 3, + STATE(3816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177566] = 5, + [193373] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7522), 1, + ACTIONS(12430), 1, anon_sym_RPAREN, - ACTIONS(7520), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3203), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177585] = 5, + [193392] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7524), 1, + ACTIONS(12432), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177604] = 5, + [193411] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7526), 1, + ACTIONS(12436), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12434), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177623] = 5, + [193430] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7530), 1, + ACTIONS(12440), 1, anon_sym_RPAREN, - ACTIONS(7528), 2, + ACTIONS(12438), 2, sym__ws, sym_comment, - STATE(3153), 3, + STATE(3845), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177642] = 5, + [193449] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7534), 1, + ACTIONS(12442), 1, anon_sym_RPAREN, - ACTIONS(7532), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3154), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177661] = 5, + [193468] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, - anon_sym_POUND_, - ACTIONS(7536), 1, - anon_sym_RPAREN, - ACTIONS(5935), 2, - sym__ws, - sym_comment, - STATE(2256), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [177680] = 5, + ACTIONS(12444), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [193487] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7540), 1, + ACTIONS(12446), 1, anon_sym_RPAREN, - ACTIONS(7538), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3155), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177699] = 5, + [193506] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7542), 1, + ACTIONS(12450), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12448), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177718] = 5, + [193525] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7544), 1, + ACTIONS(12452), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177737] = 5, + [193544] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7548), 1, + ACTIONS(12454), 1, anon_sym_RPAREN, - ACTIONS(7546), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3156), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177756] = 5, + [193563] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7550), 1, + ACTIONS(12456), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177775] = 5, + [193582] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7552), 1, + ACTIONS(12460), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12458), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3768), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177794] = 5, + [193601] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7556), 1, + ACTIONS(12462), 1, anon_sym_RPAREN, - ACTIONS(7554), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3163), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177813] = 5, + [193620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7560), 1, + ACTIONS(12464), 1, anon_sym_RPAREN, - ACTIONS(7558), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3167), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177832] = 5, + [193639] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7564), 1, + ACTIONS(12466), 1, anon_sym_RPAREN, - ACTIONS(7562), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3251), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177851] = 5, + [193658] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7566), 1, + ACTIONS(12468), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177870] = 5, + [193677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7570), 1, + ACTIONS(12472), 1, anon_sym_RPAREN, - ACTIONS(7568), 2, + ACTIONS(12470), 2, sym__ws, sym_comment, - STATE(3171), 3, + STATE(3793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177889] = 5, + [193696] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7574), 1, + ACTIONS(12476), 1, anon_sym_RPAREN, - ACTIONS(7572), 2, + ACTIONS(12474), 2, sym__ws, sym_comment, - STATE(3173), 3, + STATE(3794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177908] = 5, + [193715] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7578), 1, + ACTIONS(12478), 1, anon_sym_RPAREN, - ACTIONS(7576), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3174), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177927] = 5, + [193734] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7580), 1, + ACTIONS(12482), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12480), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177946] = 5, + [193753] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7584), 1, + ACTIONS(12484), 1, anon_sym_RPAREN, - ACTIONS(7582), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3223), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [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, + [193772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7590), 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - ACTIONS(7588), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2797), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178003] = 5, + [193791] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7592), 1, + ACTIONS(12490), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12488), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178022] = 5, + [193810] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7596), 1, + ACTIONS(12494), 1, anon_sym_RPAREN, - ACTIONS(7594), 2, + ACTIONS(12492), 2, sym__ws, sym_comment, - STATE(3177), 3, + STATE(3798), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178041] = 5, + [193829] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7598), 1, + ACTIONS(12496), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178060] = 5, + [193848] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7600), 1, + ACTIONS(12500), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12498), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178079] = 5, + [193867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7602), 1, + ACTIONS(12502), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178098] = 5, + [193886] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7606), 1, + ACTIONS(12504), 1, anon_sym_RPAREN, - ACTIONS(7604), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3181), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178117] = 5, + [193905] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7610), 1, + ACTIONS(12508), 1, anon_sym_RPAREN, - ACTIONS(7608), 2, + ACTIONS(12506), 2, sym__ws, sym_comment, - STATE(3185), 3, + STATE(3800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178136] = 5, + [193924] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7614), 1, + ACTIONS(12512), 1, anon_sym_RPAREN, - ACTIONS(7612), 2, + ACTIONS(12510), 2, sym__ws, sym_comment, - STATE(3191), 3, + STATE(3858), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178155] = 5, + [193943] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7618), 1, + ACTIONS(12516), 1, anon_sym_RPAREN, - ACTIONS(7616), 2, + ACTIONS(12514), 2, sym__ws, sym_comment, - STATE(3192), 3, + STATE(3861), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178174] = 5, + [193962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7620), 1, + ACTIONS(12518), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178193] = 4, + [193981] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, 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(12520), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194000] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7626), 1, + ACTIONS(12522), 1, anon_sym_RPAREN, - ACTIONS(7624), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3198), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178229] = 5, + [194019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7630), 1, + ACTIONS(12526), 1, anon_sym_RPAREN, - ACTIONS(7628), 2, + ACTIONS(12524), 2, sym__ws, sym_comment, - STATE(3228), 3, + STATE(3865), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178248] = 5, + [194038] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7634), 1, + ACTIONS(12528), 1, anon_sym_RPAREN, - ACTIONS(7632), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3232), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178267] = 5, + [194057] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7636), 1, + ACTIONS(12532), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12530), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3803), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178286] = 5, + [194076] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7640), 1, + ACTIONS(12536), 1, anon_sym_RPAREN, - ACTIONS(7638), 2, + ACTIONS(12534), 2, sym__ws, sym_comment, - STATE(3136), 3, + STATE(3805), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178305] = 5, + [194095] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7644), 1, + ACTIONS(12540), 1, anon_sym_RPAREN, - ACTIONS(7642), 2, + ACTIONS(12538), 2, sym__ws, sym_comment, - STATE(3129), 3, + STATE(3806), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178324] = 5, + [194114] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7646), 1, + ACTIONS(12542), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178343] = 5, + [194133] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7648), 1, + ACTIONS(12546), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12544), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3809), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178362] = 5, + [194152] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7652), 1, + ACTIONS(12550), 1, anon_sym_RPAREN, - ACTIONS(7650), 2, + ACTIONS(12548), 2, sym__ws, sym_comment, - STATE(3239), 3, + STATE(3811), 3, sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [178381] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7654), 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, - [178400] = 5, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [194171] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7658), 1, + ACTIONS(12554), 1, anon_sym_RPAREN, - ACTIONS(7656), 2, + ACTIONS(12552), 2, sym__ws, sym_comment, - STATE(3142), 3, + STATE(3812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178419] = 5, + [194190] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7662), 1, + ACTIONS(12556), 1, anon_sym_RPAREN, - ACTIONS(7660), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3241), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178438] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [194209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7664), 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, - [178457] = 5, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(12560), 1, + anon_sym_RPAREN, + ACTIONS(12558), 2, + sym__ws, + sym_comment, + STATE(3818), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [194228] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7666), 1, + ACTIONS(12564), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12562), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3820), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178476] = 5, + [194247] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7670), 1, + ACTIONS(12566), 1, anon_sym_RPAREN, - ACTIONS(7668), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3243), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178495] = 5, + [194266] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7672), 1, + ACTIONS(12568), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178514] = 5, + [194285] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7676), 1, + ACTIONS(12570), 1, anon_sym_RPAREN, - ACTIONS(7674), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3141), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178533] = 5, + [194304] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7678), 1, + ACTIONS(12574), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12572), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178552] = 5, + [194323] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7682), 1, + ACTIONS(12578), 1, anon_sym_RPAREN, - ACTIONS(7680), 2, + ACTIONS(12576), 2, sym__ws, sym_comment, - STATE(3140), 3, + STATE(3828), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178571] = 5, + [194342] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7684), 1, + ACTIONS(12582), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12580), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178590] = 5, + [194361] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7688), 1, + ACTIONS(12586), 1, anon_sym_RPAREN, - ACTIONS(7686), 2, + ACTIONS(12584), 2, sym__ws, sym_comment, - STATE(3121), 3, + STATE(3832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178609] = 5, + [194380] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7692), 1, + ACTIONS(12588), 1, anon_sym_RPAREN, - ACTIONS(7690), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3069), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178628] = 5, + [194399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7694), 1, + ACTIONS(12590), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178647] = 5, + [194418] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7696), 1, + ACTIONS(12592), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178666] = 5, + [194437] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7700), 1, + ACTIONS(12596), 1, anon_sym_RPAREN, - ACTIONS(7698), 2, + ACTIONS(12594), 2, sym__ws, sym_comment, - STATE(3246), 3, + STATE(3831), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178685] = 5, + [194456] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7704), 1, + ACTIONS(12600), 1, anon_sym_RPAREN, - ACTIONS(7702), 2, + ACTIONS(12598), 2, sym__ws, sym_comment, - STATE(3247), 3, + STATE(3873), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178704] = 5, + [194475] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(12602), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194494] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7706), 1, + ACTIONS(12604), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178723] = 5, + [194513] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7710), 1, + ACTIONS(12606), 1, anon_sym_RPAREN, - ACTIONS(7708), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3030), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178742] = 5, + [194532] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7712), 1, + ACTIONS(12610), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12608), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178761] = 5, + [194551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7716), 1, + ACTIONS(12612), 1, anon_sym_RPAREN, - ACTIONS(7714), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3137), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178780] = 5, + [194570] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7718), 1, + ACTIONS(12616), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12614), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178799] = 5, + [194589] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7722), 1, + ACTIONS(12618), 1, anon_sym_RPAREN, - ACTIONS(7720), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3133), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178818] = 5, + [194608] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7724), 1, + ACTIONS(12620), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178837] = 5, + [194627] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7728), 1, + ACTIONS(12622), 1, anon_sym_RPAREN, - ACTIONS(7726), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3120), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178856] = 5, + [194646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7732), 1, + ACTIONS(12626), 1, anon_sym_RPAREN, - ACTIONS(7730), 2, + ACTIONS(12624), 2, sym__ws, sym_comment, - STATE(2844), 3, + STATE(3857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178875] = 5, + [194665] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7734), 1, + ACTIONS(12628), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178894] = 5, + [194684] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7738), 1, + ACTIONS(12632), 1, anon_sym_RPAREN, - ACTIONS(7736), 2, + ACTIONS(12630), 2, sym__ws, sym_comment, - STATE(3262), 3, + STATE(3869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178913] = 5, + [194703] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7740), 1, + ACTIONS(12634), 1, anon_sym_loop, - STATE(1492), 1, + STATE(1832), 1, sym_sym_lit, - ACTIONS(7262), 4, + ACTIONS(12320), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [178932] = 5, + [194722] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7742), 1, + ACTIONS(12636), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178951] = 5, + [194741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7744), 1, + ACTIONS(12638), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178970] = 5, + [194760] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7748), 1, + ACTIONS(12640), 1, anon_sym_RPAREN, - ACTIONS(7746), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2847), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178989] = 5, + [194779] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7750), 1, + ACTIONS(12644), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12642), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179008] = 5, + [194798] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7754), 1, + ACTIONS(12648), 1, anon_sym_RPAREN, - ACTIONS(7752), 2, + ACTIONS(12646), 2, sym__ws, sym_comment, - STATE(3260), 3, + STATE(3726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179027] = 5, + [194817] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7756), 1, + ACTIONS(12650), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179046] = 5, + [194836] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7760), 1, + ACTIONS(12654), 1, anon_sym_RPAREN, - ACTIONS(7758), 2, + ACTIONS(12652), 2, sym__ws, sym_comment, - STATE(3259), 3, + STATE(3436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179065] = 5, + [194855] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7764), 1, + ACTIONS(12658), 1, anon_sym_RPAREN, - ACTIONS(7762), 2, + ACTIONS(12656), 2, sym__ws, sym_comment, - STATE(3258), 3, + STATE(3866), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179084] = 5, + [194874] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7766), 1, + ACTIONS(12662), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12660), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179103] = 5, + [194893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7768), 1, + ACTIONS(12664), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179122] = 4, + [194912] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5227), 1, - anon_sym_COLON_COLON, - ACTIONS(7770), 1, - anon_sym_COLON, - ACTIONS(4500), 5, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(12666), 1, + anon_sym_RPAREN, + ACTIONS(10917), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - anon_sym_EQ, - [179139] = 5, + STATE(2903), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [194931] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7774), 1, + ACTIONS(12668), 1, anon_sym_RPAREN, - ACTIONS(7772), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179158] = 5, + [194950] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(12670), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [194969] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7776), 1, + ACTIONS(12672), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179177] = 5, + [194988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7778), 1, + ACTIONS(12676), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12674), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3881), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179196] = 5, + [195007] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7780), 1, + ACTIONS(12680), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12678), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3882), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179215] = 5, + [195026] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7782), 1, + ACTIONS(12682), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179234] = 5, + [195045] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7784), 1, + ACTIONS(12684), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179253] = 5, + [195064] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(12686), 1, + anon_sym_loop, + STATE(1832), 1, + sym_sym_lit, + ACTIONS(12320), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [195083] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7786), 1, + ACTIONS(12688), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179272] = 5, + [195102] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7788), 1, + ACTIONS(12690), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179291] = 5, + [195121] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7792), 1, + ACTIONS(12694), 1, anon_sym_RPAREN, - ACTIONS(7790), 2, + ACTIONS(12692), 2, sym__ws, sym_comment, - STATE(3252), 3, + STATE(3883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179310] = 5, + [195140] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7794), 1, + ACTIONS(12698), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12696), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3444), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179329] = 5, + [195159] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7796), 1, + ACTIONS(12702), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12700), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3697), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179348] = 5, + [195178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7798), 1, + ACTIONS(12706), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(12704), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(3872), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179367] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - 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, + [195197] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7802), 1, + ACTIONS(12708), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(2256), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179405] = 5, + [195216] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7806), 1, + ACTIONS(12710), 1, anon_sym_RPAREN, - ACTIONS(7804), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3254), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179424] = 5, + [195235] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5913), 1, + ACTIONS(10915), 1, anon_sym_POUND_, - ACTIONS(7810), 1, + ACTIONS(12712), 1, anon_sym_RPAREN, - ACTIONS(7808), 2, + ACTIONS(10917), 2, sym__ws, sym_comment, - STATE(3255), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179443] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(830), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, - sym__ws, - STATE(3408), 1, - aux_sym_read_cond_lit_repeat1, - STATE(829), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [179461] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [195254] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7812), 1, + ACTIONS(10915), 1, + anon_sym_POUND_, + ACTIONS(12716), 1, + anon_sym_RPAREN, + ACTIONS(12714), 2, sym__ws, - STATE(3408), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1507), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [179479] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7814), 1, - anon_sym_DQUOTE, - ACTIONS(7818), 1, - anon_sym_TILDE, - ACTIONS(7816), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3282), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179497] = 5, + sym_comment, + STATE(3876), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [195273] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1032), 3, + STATE(3096), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179515] = 5, + [195291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1306), 3, + STATE(2622), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179533] = 5, + [195309] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7820), 1, + ACTIONS(12720), 1, sym__ws, - STATE(3285), 1, + STATE(3919), 1, aux_sym_read_cond_lit_repeat1, - STATE(888), 3, + STATE(1442), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179551] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7822), 1, - anon_sym_DQUOTE, - ACTIONS(7826), 1, - anon_sym_TILDE, - ACTIONS(7824), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3279), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [179569] = 5, + [195327] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7828), 1, + ACTIONS(12722), 1, sym__ws, - STATE(3286), 1, + STATE(3898), 1, aux_sym_read_cond_lit_repeat1, - STATE(1777), 3, + STATE(1441), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179587] = 5, + [195345] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7830), 1, + ACTIONS(12724), 1, sym__ws, - STATE(3268), 1, + STATE(3908), 1, aux_sym_read_cond_lit_repeat1, - STATE(1060), 3, + STATE(2945), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179605] = 5, + [195363] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7832), 1, + ACTIONS(12726), 1, sym__ws, - STATE(3281), 1, + STATE(3897), 1, aux_sym_read_cond_lit_repeat1, - STATE(1934), 3, + STATE(1691), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179623] = 5, + [195381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1302), 3, + STATE(2642), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179641] = 5, + [195399] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7834), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3269), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1321), 3, + STATE(1451), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179659] = 5, + [195417] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7836), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3275), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1322), 3, + STATE(1118), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179677] = 5, + [195435] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7838), 1, + ACTIONS(8464), 1, anon_sym_DQUOTE, - ACTIONS(7842), 1, + ACTIONS(12730), 1, anon_sym_TILDE, - ACTIONS(7840), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3369), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179695] = 5, + [195453] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5079), 1, + ACTIONS(8456), 1, anon_sym_DQUOTE, - ACTIONS(7846), 1, + ACTIONS(12732), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [179713] = 5, + [195471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7848), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3359), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1202), 3, + STATE(1720), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179731] = 5, + [195489] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1951), 3, + STATE(1721), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179749] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5067), 1, - anon_sym_DQUOTE, - ACTIONS(7850), 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, - [179767] = 5, + [195507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7852), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3288), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1022), 3, + STATE(1428), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179785] = 5, + [195525] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7854), 1, + ACTIONS(12734), 1, sym__ws, - STATE(3290), 1, + STATE(3891), 1, aux_sym_read_cond_lit_repeat1, - STATE(1960), 3, + STATE(2614), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179803] = 5, + [195543] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12736), 1, sym__ws, - STATE(3408), 1, + STATE(3892), 1, aux_sym_read_cond_lit_repeat1, - STATE(848), 3, + STATE(1470), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179821] = 5, + [195561] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12738), 1, + anon_sym_DQUOTE, + ACTIONS(12742), 1, + anon_sym_TILDE, + ACTIONS(12740), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3894), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195579] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12744), 1, + anon_sym_DQUOTE, + ACTIONS(12749), 1, + anon_sym_TILDE, + ACTIONS(12746), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3902), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195597] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12752), 1, sym__ws, - STATE(3408), 1, + STATE(3925), 1, aux_sym_read_cond_lit_repeat1, - STATE(1723), 3, + STATE(1469), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179839] = 5, + [195615] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(12754), 1, + anon_sym_DQUOTE, + ACTIONS(12758), 1, + anon_sym_TILDE, + ACTIONS(12756), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3914), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7856), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3300), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2174), 3, + STATE(2773), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179857] = 5, + [195651] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12760), 1, sym__ws, - STATE(3408), 1, + STATE(3944), 1, aux_sym_read_cond_lit_repeat1, - STATE(1003), 3, + STATE(1731), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179875] = 5, + [195669] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7858), 1, + ACTIONS(12762), 1, sym__ws, - STATE(3296), 1, + STATE(3915), 1, aux_sym_read_cond_lit_repeat1, - STATE(832), 3, + STATE(1132), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179893] = 5, + [195687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1877), 3, + STATE(2953), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179911] = 5, + [195705] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7860), 1, + ACTIONS(12764), 1, sym__ws, - STATE(3297), 1, + STATE(3886), 1, aux_sym_read_cond_lit_repeat1, - STATE(1819), 3, + STATE(2600), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [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, + [195723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12766), 1, sym__ws, - STATE(3408), 1, + STATE(3916), 1, aux_sym_read_cond_lit_repeat1, - STATE(1339), 3, + STATE(1047), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179965] = 5, + [195741] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12768), 1, sym__ws, - STATE(3408), 1, + STATE(3896), 1, aux_sym_read_cond_lit_repeat1, - STATE(1340), 3, + STATE(1690), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [179983] = 5, + [195759] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5091), 1, + ACTIONS(12770), 1, anon_sym_DQUOTE, - ACTIONS(7864), 1, + ACTIONS(12774), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12772), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3895), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180001] = 5, + [195777] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12776), 1, sym__ws, - STATE(3408), 1, + STATE(3929), 1, aux_sym_read_cond_lit_repeat1, - STATE(838), 3, + STATE(1049), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180019] = 5, - ACTIONS(47), 1, + [195795] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, - sym__ws, - STATE(3408), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1762), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [180037] = 5, + ACTIONS(8478), 1, + anon_sym_DQUOTE, + ACTIONS(12778), 1, + anon_sym_TILDE, + ACTIONS(12728), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3902), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [195813] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1000), 3, + STATE(1151), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180055] = 5, + [195831] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7866), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3302), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2323), 3, + STATE(1004), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180073] = 5, + [195849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12780), 1, sym__ws, - STATE(3408), 1, + STATE(3923), 1, aux_sym_read_cond_lit_repeat1, - STATE(2161), 3, + STATE(1160), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180091] = 5, + [195867] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12782), 1, sym__ws, - STATE(3408), 1, + STATE(3924), 1, aux_sym_read_cond_lit_repeat1, - STATE(1763), 3, + STATE(1079), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180109] = 5, + [195885] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2315), 3, + STATE(1429), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180127] = 5, + [195903] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7868), 1, + ACTIONS(8490), 1, anon_sym_DQUOTE, - ACTIONS(7872), 1, + ACTIONS(12784), 1, anon_sym_TILDE, - ACTIONS(7870), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3311), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180145] = 5, + [195921] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7874), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3312), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2442), 3, + STATE(2591), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180163] = 5, + [195939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7876), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3313), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(885), 3, + STATE(2917), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180181] = 5, + [195957] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7878), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3293), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1372), 3, + STATE(1173), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180199] = 5, + [195975] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(570), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7880), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3294), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1303), 3, + STATE(1117), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180217] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7882), 1, - anon_sym_DQUOTE, - ACTIONS(7886), 1, - anon_sym_TILDE, - ACTIONS(7884), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3295), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [180235] = 5, + [195993] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4795), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1573), 3, + STATE(1450), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180253] = 5, + [196011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1876), 3, + STATE(2769), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180271] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5045), 1, - anon_sym_DQUOTE, - ACTIONS(7888), 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, - [180289] = 5, + [196029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2427), 3, + STATE(2953), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180307] = 5, + [196047] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(847), 3, + STATE(2819), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180325] = 5, + [196065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7890), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3319), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2426), 3, + STATE(1005), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180343] = 5, + [196083] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7892), 1, + ACTIONS(8486), 1, anon_sym_DQUOTE, - ACTIONS(7896), 1, + ACTIONS(12786), 1, anon_sym_TILDE, - ACTIONS(7894), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3292), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180361] = 5, + [196101] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(830), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(7898), 1, + ACTIONS(12788), 1, sym__ws, - STATE(3265), 1, + STATE(3893), 1, aux_sym_read_cond_lit_repeat1, - STATE(831), 3, + STATE(1071), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180379] = 5, - ACTIONS(47), 1, + [196119] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(790), 1, + ACTIONS(12790), 1, + anon_sym_DQUOTE, + ACTIONS(12794), 1, + anon_sym_TILDE, + ACTIONS(12792), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3942), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196137] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(7900), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12796), 1, sym__ws, - STATE(3330), 1, + STATE(3947), 1, aux_sym_read_cond_lit_repeat1, - STATE(1776), 3, + STATE(1827), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180397] = 5, + [196155] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7902), 1, + ACTIONS(12798), 1, sym__ws, - STATE(3326), 1, + STATE(3885), 1, aux_sym_read_cond_lit_repeat1, - STATE(1057), 3, + STATE(3088), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180415] = 5, + [196173] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12800), 1, sym__ws, - STATE(3408), 1, + STATE(3948), 1, aux_sym_read_cond_lit_repeat1, - STATE(2438), 3, + STATE(1732), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180433] = 5, + [196191] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7904), 1, + ACTIONS(12802), 1, anon_sym_DQUOTE, - ACTIONS(7908), 1, + ACTIONS(12806), 1, anon_sym_TILDE, - ACTIONS(7906), 2, + ACTIONS(12804), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3375), 2, + STATE(3920), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180451] = 5, + [196209] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7910), 1, + ACTIONS(12808), 1, sym__ws, - STATE(3298), 1, + STATE(3951), 1, aux_sym_read_cond_lit_repeat1, - STATE(1020), 3, + STATE(1179), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180469] = 5, + [196227] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, + ACTIONS(12810), 1, sym__ws, - STATE(3301), 1, + STATE(3980), 1, aux_sym_read_cond_lit_repeat1, - STATE(1821), 3, + STATE(1829), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180487] = 5, + [196245] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8468), 1, + anon_sym_DQUOTE, + ACTIONS(12812), 1, + anon_sym_TILDE, + ACTIONS(12728), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3902), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196263] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7914), 1, + ACTIONS(12814), 1, sym__ws, - STATE(3335), 1, + STATE(3927), 1, aux_sym_read_cond_lit_repeat1, - STATE(2159), 3, + STATE(2945), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180505] = 5, + [196281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7916), 1, + ACTIONS(12816), 1, sym__ws, - STATE(3309), 1, + STATE(3928), 1, aux_sym_read_cond_lit_repeat1, - STATE(1794), 3, + STATE(2806), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180523] = 5, - ACTIONS(47), 1, + [196299] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(8482), 1, + anon_sym_DQUOTE, + ACTIONS(12818), 1, + anon_sym_TILDE, + ACTIONS(12728), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3902), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196317] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(7918), 1, - sym__ws, - STATE(3310), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1943), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [180541] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(526), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12820), 1, sym__ws, - STATE(3408), 1, + STATE(3992), 1, aux_sym_read_cond_lit_repeat1, - STATE(1031), 3, + STATE(1872), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180559] = 5, + [196335] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7920), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3342), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2304), 3, + STATE(1673), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180577] = 5, + [196353] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12822), 1, sym__ws, - STATE(3408), 1, + STATE(3974), 1, aux_sym_read_cond_lit_repeat1, - STATE(1814), 3, + STATE(1524), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180595] = 5, + [196371] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12824), 1, sym__ws, - STATE(3408), 1, + STATE(3985), 1, aux_sym_read_cond_lit_repeat1, - STATE(1907), 3, + STATE(1871), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180613] = 5, + [196389] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(790), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1720), 3, + STATE(1803), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180631] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(7922), 1, - anon_sym_DQUOTE, - ACTIONS(7926), 1, - anon_sym_TILDE, - ACTIONS(7924), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3336), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [180649] = 5, + [196407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(6225), 1, anon_sym_LPAREN, - ACTIONS(7928), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3338), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2442), 3, + STATE(1638), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180667] = 5, + [196425] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5087), 1, + ACTIONS(12826), 1, anon_sym_DQUOTE, - ACTIONS(7930), 1, + ACTIONS(12830), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12828), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3966), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180685] = 5, + [196443] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7932), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3339), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2323), 3, + STATE(2917), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180703] = 5, + [196461] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4410), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2150), 3, + STATE(1152), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180721] = 5, + [196479] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5061), 1, + ACTIONS(12832), 1, anon_sym_DQUOTE, - ACTIONS(7934), 1, + ACTIONS(12836), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12834), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3964), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180739] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7812), 1, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1485), 3, + STATE(1960), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180757] = 5, + [196515] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12838), 1, sym__ws, - STATE(3408), 1, + STATE(3905), 1, aux_sym_read_cond_lit_repeat1, - STATE(2427), 3, + STATE(2770), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180775] = 5, + [196533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12840), 1, sym__ws, - STATE(3408), 1, + STATE(3921), 1, aux_sym_read_cond_lit_repeat1, - STATE(2315), 3, + STATE(2627), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180793] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196551] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7812), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(12842), 1, sym__ws, - STATE(3408), 1, + STATE(3971), 1, aux_sym_read_cond_lit_repeat1, - STATE(1486), 3, + STATE(3099), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180811] = 5, + [196569] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(12844), 1, sym__ws, - STATE(3345), 1, + STATE(3984), 1, aux_sym_read_cond_lit_repeat1, - STATE(2426), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180829] = 5, + [196587] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12846), 1, sym__ws, - STATE(3408), 1, + STATE(3968), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(3088), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180847] = 5, + [196605] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7938), 1, + ACTIONS(12848), 1, sym__ws, - STATE(3348), 1, + STATE(3969), 1, aux_sym_read_cond_lit_repeat1, - STATE(2304), 3, + STATE(2934), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180865] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7940), 1, + ACTIONS(4410), 1, + anon_sym_LPAREN, + ACTIONS(12850), 1, sym__ws, - STATE(3337), 1, + STATE(3979), 1, aux_sym_read_cond_lit_repeat1, - STATE(1465), 3, + STATE(1161), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180883] = 5, + [196641] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2438), 3, + STATE(2845), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180901] = 5, + [196659] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(614), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7942), 1, + ACTIONS(12852), 1, sym__ws, - STATE(3328), 1, + STATE(3922), 1, aux_sym_read_cond_lit_repeat1, - STATE(1815), 3, + STATE(2934), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180919] = 5, + [196677] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7944), 1, + ACTIONS(12854), 1, sym__ws, - STATE(3329), 1, + STATE(3926), 1, aux_sym_read_cond_lit_repeat1, - STATE(1968), 3, + STATE(2790), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180937] = 5, + [196695] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(8440), 1, + anon_sym_DQUOTE, + ACTIONS(12856), 1, + anon_sym_TILDE, + ACTIONS(12728), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3902), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [196713] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(640), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12858), 1, sym__ws, - STATE(3408), 1, + STATE(3953), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(1891), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [180955] = 5, + [196731] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7946), 1, + ACTIONS(8460), 1, anon_sym_DQUOTE, - ACTIONS(7950), 1, + ACTIONS(12860), 1, anon_sym_TILDE, - ACTIONS(7948), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3333), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180973] = 5, + [196749] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(7952), 1, + ACTIONS(12862), 1, anon_sym_DQUOTE, - ACTIONS(7956), 1, + ACTIONS(12866), 1, anon_sym_TILDE, - ACTIONS(7954), 2, + ACTIONS(12864), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3358), 2, + STATE(3930), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [180991] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [196767] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7958), 1, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, sym__ws, - STATE(3340), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1466), 3, + STATE(3096), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181009] = 5, + [196785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7960), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3361), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2206), 3, + STATE(2917), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181027] = 5, - ACTIONS(29), 1, + [196803] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6049), 1, anon_sym_LPAREN, + ACTIONS(12868), 1, + sym__ws, + STATE(3961), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2818), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196821] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7962), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, sym__ws, - STATE(3266), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1494), 3, + STATE(3068), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181045] = 5, - ACTIONS(29), 1, + [196839] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(6049), 1, anon_sym_LPAREN, + ACTIONS(12718), 1, + sym__ws, + STATE(4038), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1973), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196857] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7964), 1, + ACTIONS(4811), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, sym__ws, - STATE(3378), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1495), 3, + STATE(2634), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181063] = 5, + [196875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7966), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3362), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2323), 3, + STATE(1504), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181081] = 5, + [196893] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12870), 1, sym__ws, - STATE(3408), 1, + STATE(3993), 1, aux_sym_read_cond_lit_repeat1, - STATE(1187), 3, + STATE(3099), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181099] = 5, + [196911] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7968), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3356), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1236), 3, + STATE(1547), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181117] = 5, + [196929] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5071), 1, + ACTIONS(8472), 1, anon_sym_DQUOTE, - ACTIONS(7970), 1, + ACTIONS(12872), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12728), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3902), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [181135] = 5, + [196947] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12874), 1, sym__ws, - STATE(3408), 1, + STATE(3995), 1, aux_sym_read_cond_lit_repeat1, - STATE(1248), 3, + STATE(2945), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181153] = 6, + [196965] = 5, 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(4410), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, + sym__ws, + STATE(4038), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1174), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [196983] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, - anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2202), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181191] = 5, + [197001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12876), 1, sym__ws, - STATE(3408), 1, + STATE(3976), 1, aux_sym_read_cond_lit_repeat1, - STATE(2315), 3, + STATE(1536), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181209] = 5, + [197019] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7972), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3376), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2198), 3, + STATE(1528), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181227] = 5, + [197037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(4761), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12878), 1, sym__ws, - STATE(3408), 1, + STATE(3982), 1, aux_sym_read_cond_lit_repeat1, - STATE(1573), 3, + STATE(1506), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181245] = 5, + [197055] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1230), 3, + STATE(1973), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181263] = 5, - ACTIONS(3), 1, + [197073] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 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(12718), 1, + sym__ws, + STATE(4038), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1840), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [197091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7982), 1, + ACTIONS(12880), 1, sym__ws, - STATE(3377), 1, + STATE(3972), 1, aux_sym_read_cond_lit_repeat1, - STATE(2304), 3, + STATE(1899), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181299] = 5, + [197109] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(4811), 1, anon_sym_LPAREN, - ACTIONS(7984), 1, + ACTIONS(12882), 1, + sym__ws, + STATE(3973), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2611), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [197127] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(12884), 1, sym__ws, - STATE(3364), 1, + STATE(3997), 1, aux_sym_read_cond_lit_repeat1, - STATE(1794), 3, + STATE(1503), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181317] = 5, + [197145] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5085), 1, + ACTIONS(12886), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(12890), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12888), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3977), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [181335] = 5, + [197163] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(6049), 1, anon_sym_LPAREN, - ACTIONS(7988), 1, + ACTIONS(12892), 1, sym__ws, - STATE(3365), 1, + STATE(3950), 1, aux_sym_read_cond_lit_repeat1, - STATE(1198), 3, + STATE(2934), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181353] = 5, + [197181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12894), 1, sym__ws, - STATE(3408), 1, + STATE(3996), 1, aux_sym_read_cond_lit_repeat1, - STATE(1814), 3, + STATE(1891), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181371] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(678), 1, + [197199] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - 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, + ACTIONS(12718), 1, sym__ws, - STATE(3371), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1815), 3, + STATE(1841), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181407] = 5, + [197217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(678), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7992), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3372), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1237), 3, + STATE(3068), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181425] = 5, + [197235] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(5065), 1, + ACTIONS(12896), 1, anon_sym_DQUOTE, - ACTIONS(7994), 1, + ACTIONS(12900), 1, anon_sym_TILDE, - ACTIONS(7844), 2, + ACTIONS(12898), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3366), 2, + STATE(3939), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [181443] = 5, + [197253] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(288), 1, + ACTIONS(5181), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2196), 3, + STATE(2953), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181461] = 5, + [197271] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(486), 1, + ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(7812), 1, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(2275), 3, + STATE(1960), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181479] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [197289] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7812), 1, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(12718), 1, sym__ws, - STATE(3408), 1, + STATE(4038), 1, aux_sym_read_cond_lit_repeat1, - STATE(1446), 3, + STATE(1501), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [181497] = 6, + [197307] = 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(8436), 1, + aux_sym_num_lit_token1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + ACTIONS(11010), 1, + anon_sym_COMMA, + ACTIONS(11014), 1, + aux_sym_format_directive_type_token11, + STATE(3085), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [197327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8000), 1, + ACTIONS(12902), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181529] = 3, + [197340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8004), 1, + ACTIONS(12906), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181542] = 3, + [197353] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8006), 1, + ACTIONS(12908), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181555] = 3, + [197366] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8008), 1, + ACTIONS(12910), 1, + anon_sym_cl, + ACTIONS(12912), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4003), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(4076), 1, + sym__sym_lit_without_slash, + STATE(4136), 1, + sym__package_lit_without_slash, + [197385] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12914), 1, + anon_sym_COLON, + ACTIONS(12918), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4008), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(12916), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [197402] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12920), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181568] = 3, + [197415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8010), 1, + ACTIONS(12922), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181581] = 3, + [197428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8012), 1, + ACTIONS(12924), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181594] = 3, + [197441] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8014), 1, + ACTIONS(12926), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181607] = 3, + [197454] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8016), 1, + ACTIONS(12928), 1, + anon_sym_COLON, + ACTIONS(12932), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4008), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(12930), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [197471] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12935), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181620] = 3, + [197484] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8018), 1, + ACTIONS(12937), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [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, + [197497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8033), 1, + ACTIONS(12939), 1, anon_sym_loop, - ACTIONS(8002), 4, + ACTIONS(12904), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [181680] = 2, + [197510] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12941), 1, + anon_sym_COLON, + ACTIONS(12943), 3, + anon_sym_COLON_COLON, + anon_sym_SLASH, + aux_sym__sym_lit_without_slash_token1, + [197522] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8035), 4, + ACTIONS(12945), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181690] = 2, + [197532] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8037), 4, + ACTIONS(12947), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181700] = 2, + [197542] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8039), 4, + ACTIONS(12949), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181710] = 2, + [197552] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8041), 4, + ACTIONS(12951), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181720] = 2, + [197562] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8043), 4, + ACTIONS(12953), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181730] = 2, + [197572] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8045), 4, + ACTIONS(12955), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181740] = 2, + [197582] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8047), 4, + ACTIONS(12957), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181750] = 2, + [197592] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8049), 4, + ACTIONS(12959), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181760] = 2, + [197602] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(8051), 4, + ACTIONS(12961), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [181770] = 3, + [197612] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8053), 1, - anon_sym_COLON, - ACTIONS(8055), 3, - anon_sym_COLON_COLON, - anon_sym_SLASH, - aux_sym__sym_lit_without_slash_token1, - [181782] = 4, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(12963), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [197625] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(8057), 1, + ACTIONS(12965), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181795] = 4, + [197638] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(12967), 1, aux_sym_sym_lit_token1, - ACTIONS(8059), 1, + ACTIONS(12969), 1, anon_sym_EQ, - STATE(1958), 1, - sym_sym_lit, - [181808] = 4, + STATE(1055), 1, + sym_kwd_symbol, + [197651] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(8061), 1, + ACTIONS(12971), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181821] = 4, + [197664] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8063), 1, - anon_sym_COLON, - ACTIONS(8065), 1, - anon_sym_COLON_COLON, - ACTIONS(8067), 1, - anon_sym_SLASH, - [181834] = 4, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(12973), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [197677] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(12977), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [197690] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(8069), 1, + ACTIONS(12979), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181847] = 4, + [197703] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(12981), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [197716] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(12983), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [197729] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - ACTIONS(8071), 1, + ACTIONS(12985), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(1064), 1, sym_sym_lit, - [181860] = 4, + [197742] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8073), 1, - sym__ws, - ACTIONS(8076), 1, - anon_sym_LPAREN, - STATE(3408), 1, - aux_sym_read_cond_lit_repeat1, - [181873] = 4, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(12987), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [197755] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(8078), 1, + ACTIONS(12989), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181886] = 4, + [197768] = 4, ACTIONS(47), 1, sym_block_comment, - 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(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(12991), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [197781] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - ACTIONS(8080), 1, + ACTIONS(12993), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [197794] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(12995), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181912] = 4, + [197807] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(740), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - ACTIONS(8082), 1, + ACTIONS(12997), 1, anon_sym_EQ, - STATE(1958), 1, + STATE(2635), 1, sym_sym_lit, - [181925] = 3, + [197820] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12999), 1, + sym__ws, + ACTIONS(13002), 1, + anon_sym_LPAREN, + STATE(4038), 1, + aux_sym_read_cond_lit_repeat1, + [197833] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8084), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(837), 1, + ACTIONS(13004), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [181935] = 3, + [197846] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8086), 1, + ACTIONS(12967), 1, aux_sym_sym_lit_token1, - STATE(1460), 1, + ACTIONS(13006), 1, + anon_sym_EQ, + STATE(1055), 1, sym_kwd_symbol, - [181945] = 3, + [197859] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13008), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [197872] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8088), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(899), 1, + ACTIONS(13010), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [181955] = 3, + [197885] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8090), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(1249), 1, + ACTIONS(13012), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [181965] = 3, + [197898] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8092), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(2139), 1, + ACTIONS(13014), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [181975] = 3, + [197911] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8094), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1197), 1, + ACTIONS(13016), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [181985] = 3, + [197924] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13018), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [197937] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8096), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, + ACTIONS(13020), 1, + anon_sym_EQ, STATE(1064), 1, + sym_sym_lit, + [197950] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13022), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [181995] = 3, + [197963] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5475), 1, + ACTIONS(12967), 1, aux_sym_sym_lit_token1, - STATE(2307), 1, + ACTIONS(13024), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [197976] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13026), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182005] = 3, + [197989] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8063), 1, - anon_sym_COLON, - ACTIONS(8065), 1, - anon_sym_COLON_COLON, - [182015] = 3, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13028), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198002] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8098), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1326), 1, + ACTIONS(13030), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182025] = 3, + [198015] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5469), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(2307), 1, + ACTIONS(13032), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182035] = 3, + [198028] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8100), 1, + ACTIONS(12967), 1, aux_sym_sym_lit_token1, - STATE(2210), 1, + ACTIONS(13034), 1, + anon_sym_EQ, + STATE(1055), 1, sym_kwd_symbol, - [182045] = 3, + [198041] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8102), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1377), 1, - sym_kwd_symbol, - [182055] = 3, + ACTIONS(13036), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198054] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8104), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1755), 1, + ACTIONS(13038), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182065] = 3, + [198067] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5475), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13040), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198080] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13042), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [198093] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13044), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [198106] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1796), 1, + ACTIONS(13046), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182075] = 3, + [198119] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8106), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(1769), 1, + ACTIONS(13048), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [182085] = 3, + [198132] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8108), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - STATE(1796), 1, + ACTIONS(13050), 1, + anon_sym_EQ, + STATE(1064), 1, sym_sym_lit, - [182095] = 3, + [198145] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5459), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1492), 1, + ACTIONS(13052), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198158] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13054), 1, + anon_sym_EQ, + STATE(1064), 1, sym_sym_lit, - [182105] = 3, + [198171] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13056), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198184] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13058), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198197] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8110), 1, + ACTIONS(190), 1, aux_sym_sym_lit_token1, - STATE(1025), 1, + ACTIONS(13060), 1, + anon_sym_EQ, + STATE(1064), 1, sym_sym_lit, - [182115] = 3, + [198210] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8112), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(1967), 1, + ACTIONS(13062), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [182125] = 3, + [198223] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8114), 1, + ACTIONS(12975), 1, aux_sym_sym_lit_token1, - STATE(2415), 1, + ACTIONS(13064), 1, + anon_sym_EQ, + STATE(2608), 1, sym_kwd_symbol, - [182135] = 3, + [198236] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8116), 1, + ACTIONS(81), 1, aux_sym_sym_lit_token1, - STATE(1958), 1, + ACTIONS(13066), 1, + anon_sym_EQ, + STATE(2635), 1, sym_sym_lit, - [182145] = 2, + [198249] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8118), 1, - anon_sym_COLON, - [182152] = 2, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13068), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [198262] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8120), 1, - aux_sym_regex_lit_token1, - [182159] = 2, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13070), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [198275] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12967), 1, + aux_sym_sym_lit_token1, + ACTIONS(13072), 1, + anon_sym_EQ, + STATE(1055), 1, + sym_kwd_symbol, + [198288] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13074), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198301] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13076), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198314] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8122), 1, + ACTIONS(13078), 1, anon_sym_COLON, - [182166] = 2, + ACTIONS(13080), 1, + anon_sym_COLON_COLON, + ACTIONS(13082), 1, + anon_sym_SLASH, + [198327] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(544), 1, - anon_sym_LBRACE, - [182173] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13084), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198340] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8124), 1, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13086), 1, anon_sym_EQ, - [182180] = 2, + STATE(2635), 1, + sym_sym_lit, + [198353] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8126), 1, - aux_sym_regex_lit_token1, - [182187] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13088), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198366] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8128), 1, - anon_sym_COLON, - [182194] = 2, + ACTIONS(12918), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(4003), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(4158), 1, + sym__sym_lit_without_slash, + [198379] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8130), 1, - anon_sym_COLON, - [182201] = 2, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13090), 1, + anon_sym_EQ, + STATE(2635), 1, + sym_sym_lit, + [198392] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8132), 1, - anon_sym_COLON, - [182208] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13092), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198405] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8134), 1, - anon_sym_COLON, - [182215] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13094), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198418] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8136), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13096), 1, anon_sym_EQ, - [182222] = 2, + STATE(2608), 1, + sym_kwd_symbol, + [198431] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8138), 1, - anon_sym_COLON, - [182229] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13098), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198444] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8140), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13100), 1, anon_sym_EQ, - [182236] = 2, + STATE(2608), 1, + sym_kwd_symbol, + [198457] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(718), 1, - anon_sym_LBRACE, - [182243] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13102), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198470] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(742), 1, - anon_sym_LBRACE, - [182250] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13104), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198483] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(792), 1, - anon_sym_LBRACE, - [182257] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13106), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198496] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(488), 1, - anon_sym_LBRACE, - [182264] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13108), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198509] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8142), 1, - anon_sym_COLON, - [182271] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13110), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198522] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8144), 1, - anon_sym_COLON, - [182278] = 2, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13112), 1, + anon_sym_EQ, + STATE(2608), 1, + sym_kwd_symbol, + [198535] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8146), 1, - aux_sym_regex_lit_token1, - [182285] = 2, + ACTIONS(190), 1, + aux_sym_sym_lit_token1, + ACTIONS(13114), 1, + anon_sym_EQ, + STATE(1064), 1, + sym_sym_lit, + [198548] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8148), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13116), 1, anon_sym_EQ, - [182292] = 2, + STATE(2608), 1, + sym_kwd_symbol, + [198561] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8150), 1, + ACTIONS(12975), 1, + aux_sym_sym_lit_token1, + ACTIONS(13118), 1, anon_sym_EQ, - [182299] = 2, + STATE(2608), 1, + sym_kwd_symbol, + [198574] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8152), 1, + ACTIONS(81), 1, + aux_sym_sym_lit_token1, + ACTIONS(13120), 1, anon_sym_EQ, - [182306] = 2, + STATE(2635), 1, + sym_sym_lit, + [198587] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8154), 1, - anon_sym_COLON, - [182313] = 2, + ACTIONS(13122), 1, + aux_sym_sym_lit_token1, + STATE(2608), 1, + sym_kwd_symbol, + [198597] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8156), 1, - aux_sym__format_token_token1, - [182320] = 2, + ACTIONS(13124), 1, + aux_sym_sym_lit_token1, + STATE(1474), 1, + sym_kwd_symbol, + [198607] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8158), 1, - anon_sym_COLON, - [182327] = 2, + ACTIONS(13126), 1, + aux_sym_sym_lit_token1, + STATE(2635), 1, + sym_sym_lit, + [198617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8160), 1, - anon_sym_COLON, - [182334] = 2, + ACTIONS(13128), 1, + aux_sym_sym_lit_token1, + STATE(1444), 1, + sym_sym_lit, + [198627] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(680), 1, - anon_sym_LBRACE, - [182341] = 2, + ACTIONS(13130), 1, + aux_sym_sym_lit_token1, + STATE(1197), 1, + sym_kwd_symbol, + [198637] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8162), 1, - anon_sym_COLON, - [182348] = 2, + ACTIONS(13132), 1, + aux_sym_sym_lit_token1, + STATE(1534), 1, + sym_sym_lit, + [198647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8164), 1, - anon_sym_EQ, - [182355] = 2, + ACTIONS(13134), 1, + aux_sym_sym_lit_token1, + STATE(3086), 1, + sym_kwd_symbol, + [198657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8166), 1, - anon_sym_into, - [182362] = 2, + ACTIONS(10448), 1, + aux_sym_sym_lit_token1, + STATE(2965), 1, + sym_sym_lit, + [198667] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8168), 1, - anon_sym_EQ, - [182369] = 2, + ACTIONS(10438), 1, + aux_sym_sym_lit_token1, + STATE(1832), 1, + sym_sym_lit, + [198677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8170), 1, - anon_sym_EQ, - [182376] = 2, + ACTIONS(13136), 1, + aux_sym_sym_lit_token1, + STATE(1158), 1, + sym_sym_lit, + [198687] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8172), 1, - anon_sym_COLON, - [182383] = 2, + ACTIONS(13138), 1, + aux_sym_sym_lit_token1, + STATE(1686), 1, + sym_kwd_symbol, + [198697] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8174), 1, - anon_sym_COLON, - [182390] = 2, + ACTIONS(13140), 1, + aux_sym_sym_lit_token1, + STATE(1064), 1, + sym_sym_lit, + [198707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8176), 1, - aux_sym_regex_lit_token1, - [182397] = 2, + ACTIONS(10452), 1, + aux_sym_sym_lit_token1, + STATE(1969), 1, + sym_sym_lit, + [198717] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8178), 1, - anon_sym_COLON, - [182404] = 2, + ACTIONS(13142), 1, + aux_sym_sym_lit_token1, + STATE(1727), 1, + sym_sym_lit, + [198727] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8180), 1, - anon_sym_COLON, - [182411] = 2, + ACTIONS(13144), 1, + aux_sym_sym_lit_token1, + STATE(2822), 1, + sym_kwd_symbol, + [198737] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8182), 1, - anon_sym_EQ, - [182418] = 2, + ACTIONS(13146), 1, + aux_sym_sym_lit_token1, + STATE(1526), 1, + sym_kwd_symbol, + [198747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8184), 1, + ACTIONS(13078), 1, anon_sym_COLON, - [182425] = 2, + ACTIONS(13080), 1, + anon_sym_COLON_COLON, + [198757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8186), 1, - anon_sym_EQ, - [182432] = 2, + ACTIONS(13148), 1, + aux_sym_sym_lit_token1, + STATE(2793), 1, + sym_kwd_symbol, + [198767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8188), 1, - anon_sym_EQ, - [182439] = 2, + ACTIONS(10452), 1, + aux_sym_sym_lit_token1, + STATE(2965), 1, + sym_sym_lit, + [198777] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8190), 1, - anon_sym_EQ, - [182446] = 2, + ACTIONS(13150), 1, + aux_sym_sym_lit_token1, + STATE(1883), 1, + sym_kwd_symbol, + [198787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8192), 1, - ts_builtin_sym_end, - [182453] = 2, + ACTIONS(13152), 1, + aux_sym_sym_lit_token1, + STATE(1969), 1, + sym_sym_lit, + [198797] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13154), 1, + aux_sym_sym_lit_token1, + STATE(1055), 1, + sym_kwd_symbol, + [198807] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13156), 1, + anon_sym_into, + [198814] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7299), 1, + anon_sym_LBRACE, + [198821] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7287), 1, + anon_sym_LBRACE, + [198828] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13158), 1, + anon_sym_into, + [198835] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8194), 1, + ACTIONS(13160), 1, aux_sym_regex_lit_token1, - [182460] = 2, + [198842] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8196), 1, - anon_sym_COLON, - [182467] = 2, + ACTIONS(13162), 1, + aux_sym_regex_lit_token1, + [198849] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8198), 1, - anon_sym_SLASH, - [182474] = 2, + ACTIONS(13164), 1, + aux_sym_regex_lit_token1, + [198856] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8200), 1, - anon_sym_COLON, - [182481] = 2, + ACTIONS(13166), 1, + anon_sym_into, + [198863] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8202), 1, + ACTIONS(13168), 1, anon_sym_COLON, - [182488] = 2, + [198870] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8204), 1, + ACTIONS(13170), 1, anon_sym_COLON, - [182495] = 2, + [198877] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8206), 1, + ACTIONS(13172), 1, anon_sym_COLON, - [182502] = 2, + [198884] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8208), 1, + ACTIONS(13174), 1, anon_sym_into, - [182509] = 2, + [198891] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8210), 1, + ACTIONS(13176), 1, + aux_sym_regex_lit_token1, + [198898] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13178), 1, anon_sym_into, - [182516] = 2, + [198905] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13180), 1, + anon_sym_COLON, + [198912] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13182), 1, + anon_sym_COLON, + [198919] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8212), 1, + ACTIONS(13184), 1, anon_sym_COLON, - [182523] = 2, + [198926] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8214), 1, + ACTIONS(13186), 1, anon_sym_SLASH, - [182530] = 2, + [198933] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13188), 1, + anon_sym_into, + [198940] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(832), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - [182537] = 2, + [198947] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8216), 1, + ACTIONS(13190), 1, anon_sym_COLON, - [182544] = 2, + [198954] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8218), 1, - aux_sym_regex_lit_token1, - [182551] = 2, + ACTIONS(13192), 1, + anon_sym_COLON, + [198961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8220), 1, - anon_sym_into, - [182558] = 2, + ACTIONS(7355), 1, + anon_sym_LBRACE, + [198968] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8222), 1, + ACTIONS(7383), 1, + anon_sym_LBRACE, + [198975] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13194), 1, anon_sym_COLON, - [182565] = 2, + [198982] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(528), 1, + ACTIONS(7323), 1, anon_sym_LBRACE, - [182572] = 2, + [198989] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13196), 1, + anon_sym_into, + [198996] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8224), 1, + ACTIONS(13198), 1, anon_sym_COLON, - [182579] = 2, + [199003] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13200), 1, + anon_sym_into, + [199010] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(572), 1, + ACTIONS(7395), 1, anon_sym_LBRACE, - [182586] = 2, + [199017] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8226), 1, - anon_sym_COLON, - [182593] = 2, + ACTIONS(13202), 1, + aux_sym__format_token_token1, + [199024] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13204), 1, + aux_sym_regex_lit_token1, + [199031] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8228), 1, + ACTIONS(13206), 1, anon_sym_COLON, - [182600] = 2, + [199038] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8230), 1, + ACTIONS(13208), 1, anon_sym_COLON, - [182607] = 2, + [199045] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8232), 1, + ACTIONS(13210), 1, aux_sym_regex_lit_token1, - [182614] = 2, + [199052] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7367), 1, + anon_sym_LBRACE, + [199059] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8234), 1, + ACTIONS(13212), 1, aux_sym_regex_lit_token1, - [182621] = 2, + [199066] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8236), 1, + ACTIONS(13214), 1, anon_sym_COLON, - [182628] = 2, + [199073] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8238), 1, - anon_sym_EQ, - [182635] = 2, + ACTIONS(13216), 1, + ts_builtin_sym_end, + [199080] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13218), 1, + anon_sym_SLASH, + [199087] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8240), 1, + ACTIONS(13220), 1, anon_sym_COLON, - [182642] = 2, + [199094] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8242), 1, - anon_sym_EQ, - [182649] = 2, + ACTIONS(13222), 1, + anon_sym_COLON, + [199101] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8244), 1, - anon_sym_EQ, - [182656] = 2, + ACTIONS(7343), 1, + anon_sym_LBRACE, + [199108] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13224), 1, + anon_sym_COLON, + [199115] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(13226), 1, + aux_sym_regex_lit_token1, + [199122] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(8246), 1, + ACTIONS(13228), 1, aux_sym_regex_lit_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(166)] = 0, - [SMALL_STATE(167)] = 135, - [SMALL_STATE(168)] = 270, - [SMALL_STATE(169)] = 405, - [SMALL_STATE(170)] = 540, - [SMALL_STATE(171)] = 675, - [SMALL_STATE(172)] = 810, - [SMALL_STATE(173)] = 945, - [SMALL_STATE(174)] = 1080, - [SMALL_STATE(175)] = 1215, - [SMALL_STATE(176)] = 1350, - [SMALL_STATE(177)] = 1485, - [SMALL_STATE(178)] = 1620, - [SMALL_STATE(179)] = 1755, - [SMALL_STATE(180)] = 1890, - [SMALL_STATE(181)] = 2025, - [SMALL_STATE(182)] = 2160, - [SMALL_STATE(183)] = 2295, - [SMALL_STATE(184)] = 2430, - [SMALL_STATE(185)] = 2565, - [SMALL_STATE(186)] = 2700, - [SMALL_STATE(187)] = 2835, - [SMALL_STATE(188)] = 2970, - [SMALL_STATE(189)] = 3105, - [SMALL_STATE(190)] = 3240, - [SMALL_STATE(191)] = 3375, - [SMALL_STATE(192)] = 3510, - [SMALL_STATE(193)] = 3645, - [SMALL_STATE(194)] = 3780, - [SMALL_STATE(195)] = 3915, - [SMALL_STATE(196)] = 4050, - [SMALL_STATE(197)] = 4185, - [SMALL_STATE(198)] = 4320, - [SMALL_STATE(199)] = 4455, - [SMALL_STATE(200)] = 4590, - [SMALL_STATE(201)] = 4725, - [SMALL_STATE(202)] = 4860, - [SMALL_STATE(203)] = 4995, - [SMALL_STATE(204)] = 5130, - [SMALL_STATE(205)] = 5265, - [SMALL_STATE(206)] = 5400, - [SMALL_STATE(207)] = 5535, - [SMALL_STATE(208)] = 5670, - [SMALL_STATE(209)] = 5805, - [SMALL_STATE(210)] = 5940, - [SMALL_STATE(211)] = 6075, - [SMALL_STATE(212)] = 6210, - [SMALL_STATE(213)] = 6345, - [SMALL_STATE(214)] = 6480, - [SMALL_STATE(215)] = 6615, - [SMALL_STATE(216)] = 6750, - [SMALL_STATE(217)] = 6885, - [SMALL_STATE(218)] = 7020, - [SMALL_STATE(219)] = 7155, - [SMALL_STATE(220)] = 7290, - [SMALL_STATE(221)] = 7425, - [SMALL_STATE(222)] = 7560, - [SMALL_STATE(223)] = 7695, - [SMALL_STATE(224)] = 7830, - [SMALL_STATE(225)] = 7965, - [SMALL_STATE(226)] = 8100, - [SMALL_STATE(227)] = 8235, - [SMALL_STATE(228)] = 8370, - [SMALL_STATE(229)] = 8505, - [SMALL_STATE(230)] = 8640, - [SMALL_STATE(231)] = 8775, - [SMALL_STATE(232)] = 8910, - [SMALL_STATE(233)] = 9045, - [SMALL_STATE(234)] = 9180, - [SMALL_STATE(235)] = 9315, - [SMALL_STATE(236)] = 9450, - [SMALL_STATE(237)] = 9585, - [SMALL_STATE(238)] = 9720, - [SMALL_STATE(239)] = 9855, - [SMALL_STATE(240)] = 9990, - [SMALL_STATE(241)] = 10125, - [SMALL_STATE(242)] = 10260, - [SMALL_STATE(243)] = 10395, - [SMALL_STATE(244)] = 10530, - [SMALL_STATE(245)] = 10665, - [SMALL_STATE(246)] = 10800, - [SMALL_STATE(247)] = 10935, - [SMALL_STATE(248)] = 11070, - [SMALL_STATE(249)] = 11205, - [SMALL_STATE(250)] = 11340, - [SMALL_STATE(251)] = 11475, - [SMALL_STATE(252)] = 11610, - [SMALL_STATE(253)] = 11745, - [SMALL_STATE(254)] = 11880, - [SMALL_STATE(255)] = 12015, - [SMALL_STATE(256)] = 12150, - [SMALL_STATE(257)] = 12285, - [SMALL_STATE(258)] = 12420, - [SMALL_STATE(259)] = 12555, - [SMALL_STATE(260)] = 12690, - [SMALL_STATE(261)] = 12825, - [SMALL_STATE(262)] = 12960, - [SMALL_STATE(263)] = 13095, - [SMALL_STATE(264)] = 13230, - [SMALL_STATE(265)] = 13365, - [SMALL_STATE(266)] = 13500, - [SMALL_STATE(267)] = 13635, - [SMALL_STATE(268)] = 13770, - [SMALL_STATE(269)] = 13905, - [SMALL_STATE(270)] = 14040, - [SMALL_STATE(271)] = 14175, - [SMALL_STATE(272)] = 14310, - [SMALL_STATE(273)] = 14445, - [SMALL_STATE(274)] = 14580, - [SMALL_STATE(275)] = 14715, - [SMALL_STATE(276)] = 14850, - [SMALL_STATE(277)] = 14985, - [SMALL_STATE(278)] = 15120, - [SMALL_STATE(279)] = 15255, - [SMALL_STATE(280)] = 15390, - [SMALL_STATE(281)] = 15525, - [SMALL_STATE(282)] = 15660, - [SMALL_STATE(283)] = 15795, - [SMALL_STATE(284)] = 15930, - [SMALL_STATE(285)] = 16065, - [SMALL_STATE(286)] = 16200, - [SMALL_STATE(287)] = 16335, - [SMALL_STATE(288)] = 16470, - [SMALL_STATE(289)] = 16605, - [SMALL_STATE(290)] = 16740, - [SMALL_STATE(291)] = 16875, - [SMALL_STATE(292)] = 17010, - [SMALL_STATE(293)] = 17145, - [SMALL_STATE(294)] = 17280, - [SMALL_STATE(295)] = 17415, - [SMALL_STATE(296)] = 17550, - [SMALL_STATE(297)] = 17685, - [SMALL_STATE(298)] = 17820, - [SMALL_STATE(299)] = 17955, - [SMALL_STATE(300)] = 18090, - [SMALL_STATE(301)] = 18225, - [SMALL_STATE(302)] = 18360, - [SMALL_STATE(303)] = 18495, - [SMALL_STATE(304)] = 18630, - [SMALL_STATE(305)] = 18765, - [SMALL_STATE(306)] = 18900, - [SMALL_STATE(307)] = 19035, - [SMALL_STATE(308)] = 19170, - [SMALL_STATE(309)] = 19305, - [SMALL_STATE(310)] = 19440, - [SMALL_STATE(311)] = 19575, - [SMALL_STATE(312)] = 19710, - [SMALL_STATE(313)] = 19845, - [SMALL_STATE(314)] = 19980, - [SMALL_STATE(315)] = 20115, - [SMALL_STATE(316)] = 20250, - [SMALL_STATE(317)] = 20385, - [SMALL_STATE(318)] = 20520, - [SMALL_STATE(319)] = 20655, - [SMALL_STATE(320)] = 20790, - [SMALL_STATE(321)] = 20925, - [SMALL_STATE(322)] = 21060, - [SMALL_STATE(323)] = 21195, - [SMALL_STATE(324)] = 21330, - [SMALL_STATE(325)] = 21465, - [SMALL_STATE(326)] = 21600, - [SMALL_STATE(327)] = 21735, - [SMALL_STATE(328)] = 21870, - [SMALL_STATE(329)] = 22005, - [SMALL_STATE(330)] = 22140, - [SMALL_STATE(331)] = 22275, - [SMALL_STATE(332)] = 22410, - [SMALL_STATE(333)] = 22545, - [SMALL_STATE(334)] = 22680, - [SMALL_STATE(335)] = 22815, - [SMALL_STATE(336)] = 22950, - [SMALL_STATE(337)] = 23085, - [SMALL_STATE(338)] = 23220, - [SMALL_STATE(339)] = 23355, - [SMALL_STATE(340)] = 23490, - [SMALL_STATE(341)] = 23625, - [SMALL_STATE(342)] = 23760, - [SMALL_STATE(343)] = 23895, - [SMALL_STATE(344)] = 24030, - [SMALL_STATE(345)] = 24165, - [SMALL_STATE(346)] = 24300, - [SMALL_STATE(347)] = 24435, - [SMALL_STATE(348)] = 24570, - [SMALL_STATE(349)] = 24705, - [SMALL_STATE(350)] = 24840, - [SMALL_STATE(351)] = 24975, - [SMALL_STATE(352)] = 25110, - [SMALL_STATE(353)] = 25245, - [SMALL_STATE(354)] = 25380, - [SMALL_STATE(355)] = 25515, - [SMALL_STATE(356)] = 25650, - [SMALL_STATE(357)] = 25785, - [SMALL_STATE(358)] = 25920, - [SMALL_STATE(359)] = 26055, - [SMALL_STATE(360)] = 26190, - [SMALL_STATE(361)] = 26325, - [SMALL_STATE(362)] = 26460, - [SMALL_STATE(363)] = 26595, - [SMALL_STATE(364)] = 26730, - [SMALL_STATE(365)] = 26865, - [SMALL_STATE(366)] = 27000, - [SMALL_STATE(367)] = 27135, - [SMALL_STATE(368)] = 27270, - [SMALL_STATE(369)] = 27405, - [SMALL_STATE(370)] = 27540, - [SMALL_STATE(371)] = 27675, - [SMALL_STATE(372)] = 27810, - [SMALL_STATE(373)] = 27945, - [SMALL_STATE(374)] = 28080, - [SMALL_STATE(375)] = 28215, - [SMALL_STATE(376)] = 28350, - [SMALL_STATE(377)] = 28485, - [SMALL_STATE(378)] = 28620, - [SMALL_STATE(379)] = 28755, - [SMALL_STATE(380)] = 28890, - [SMALL_STATE(381)] = 29025, - [SMALL_STATE(382)] = 29160, - [SMALL_STATE(383)] = 29295, - [SMALL_STATE(384)] = 29430, - [SMALL_STATE(385)] = 29565, - [SMALL_STATE(386)] = 29700, - [SMALL_STATE(387)] = 29835, - [SMALL_STATE(388)] = 29970, - [SMALL_STATE(389)] = 30105, - [SMALL_STATE(390)] = 30240, - [SMALL_STATE(391)] = 30375, - [SMALL_STATE(392)] = 30510, - [SMALL_STATE(393)] = 30645, - [SMALL_STATE(394)] = 30780, - [SMALL_STATE(395)] = 30915, - [SMALL_STATE(396)] = 31050, - [SMALL_STATE(397)] = 31185, - [SMALL_STATE(398)] = 31320, - [SMALL_STATE(399)] = 31455, - [SMALL_STATE(400)] = 31590, - [SMALL_STATE(401)] = 31725, - [SMALL_STATE(402)] = 31860, - [SMALL_STATE(403)] = 31995, - [SMALL_STATE(404)] = 32130, - [SMALL_STATE(405)] = 32265, - [SMALL_STATE(406)] = 32400, - [SMALL_STATE(407)] = 32535, - [SMALL_STATE(408)] = 32670, - [SMALL_STATE(409)] = 32805, - [SMALL_STATE(410)] = 32940, - [SMALL_STATE(411)] = 33075, - [SMALL_STATE(412)] = 33210, - [SMALL_STATE(413)] = 33345, - [SMALL_STATE(414)] = 33480, - [SMALL_STATE(415)] = 33615, - [SMALL_STATE(416)] = 33750, - [SMALL_STATE(417)] = 33885, - [SMALL_STATE(418)] = 34020, - [SMALL_STATE(419)] = 34155, - [SMALL_STATE(420)] = 34290, - [SMALL_STATE(421)] = 34425, - [SMALL_STATE(422)] = 34560, - [SMALL_STATE(423)] = 34695, - [SMALL_STATE(424)] = 34830, - [SMALL_STATE(425)] = 34965, - [SMALL_STATE(426)] = 35100, - [SMALL_STATE(427)] = 35235, - [SMALL_STATE(428)] = 35370, - [SMALL_STATE(429)] = 35505, - [SMALL_STATE(430)] = 35640, - [SMALL_STATE(431)] = 35775, - [SMALL_STATE(432)] = 35910, - [SMALL_STATE(433)] = 36045, - [SMALL_STATE(434)] = 36180, - [SMALL_STATE(435)] = 36315, - [SMALL_STATE(436)] = 36450, - [SMALL_STATE(437)] = 36585, - [SMALL_STATE(438)] = 36720, - [SMALL_STATE(439)] = 36855, - [SMALL_STATE(440)] = 36990, - [SMALL_STATE(441)] = 37125, - [SMALL_STATE(442)] = 37260, - [SMALL_STATE(443)] = 37395, - [SMALL_STATE(444)] = 37530, - [SMALL_STATE(445)] = 37665, - [SMALL_STATE(446)] = 37800, - [SMALL_STATE(447)] = 37935, - [SMALL_STATE(448)] = 38070, - [SMALL_STATE(449)] = 38205, - [SMALL_STATE(450)] = 38340, - [SMALL_STATE(451)] = 38475, - [SMALL_STATE(452)] = 38610, - [SMALL_STATE(453)] = 38745, - [SMALL_STATE(454)] = 38880, - [SMALL_STATE(455)] = 39015, - [SMALL_STATE(456)] = 39150, - [SMALL_STATE(457)] = 39285, - [SMALL_STATE(458)] = 39420, - [SMALL_STATE(459)] = 39555, - [SMALL_STATE(460)] = 39690, - [SMALL_STATE(461)] = 39825, - [SMALL_STATE(462)] = 39960, - [SMALL_STATE(463)] = 40095, - [SMALL_STATE(464)] = 40230, - [SMALL_STATE(465)] = 40365, - [SMALL_STATE(466)] = 40500, - [SMALL_STATE(467)] = 40635, - [SMALL_STATE(468)] = 40770, - [SMALL_STATE(469)] = 40905, - [SMALL_STATE(470)] = 41040, - [SMALL_STATE(471)] = 41175, - [SMALL_STATE(472)] = 41310, - [SMALL_STATE(473)] = 41445, - [SMALL_STATE(474)] = 41580, - [SMALL_STATE(475)] = 41715, - [SMALL_STATE(476)] = 41850, - [SMALL_STATE(477)] = 41985, - [SMALL_STATE(478)] = 42120, - [SMALL_STATE(479)] = 42255, - [SMALL_STATE(480)] = 42390, - [SMALL_STATE(481)] = 42525, - [SMALL_STATE(482)] = 42660, - [SMALL_STATE(483)] = 42795, - [SMALL_STATE(484)] = 42930, - [SMALL_STATE(485)] = 43065, - [SMALL_STATE(486)] = 43200, - [SMALL_STATE(487)] = 43335, - [SMALL_STATE(488)] = 43470, - [SMALL_STATE(489)] = 43605, - [SMALL_STATE(490)] = 43740, - [SMALL_STATE(491)] = 43875, - [SMALL_STATE(492)] = 44010, - [SMALL_STATE(493)] = 44145, - [SMALL_STATE(494)] = 44280, - [SMALL_STATE(495)] = 44415, - [SMALL_STATE(496)] = 44550, - [SMALL_STATE(497)] = 44685, - [SMALL_STATE(498)] = 44820, - [SMALL_STATE(499)] = 44955, - [SMALL_STATE(500)] = 45090, - [SMALL_STATE(501)] = 45225, - [SMALL_STATE(502)] = 45360, - [SMALL_STATE(503)] = 45495, - [SMALL_STATE(504)] = 45630, - [SMALL_STATE(505)] = 45765, - [SMALL_STATE(506)] = 45900, - [SMALL_STATE(507)] = 46035, - [SMALL_STATE(508)] = 46170, - [SMALL_STATE(509)] = 46305, - [SMALL_STATE(510)] = 46440, - [SMALL_STATE(511)] = 46575, - [SMALL_STATE(512)] = 46710, - [SMALL_STATE(513)] = 46845, - [SMALL_STATE(514)] = 46980, - [SMALL_STATE(515)] = 47115, - [SMALL_STATE(516)] = 47250, - [SMALL_STATE(517)] = 47385, - [SMALL_STATE(518)] = 47520, - [SMALL_STATE(519)] = 47655, - [SMALL_STATE(520)] = 47790, - [SMALL_STATE(521)] = 47925, - [SMALL_STATE(522)] = 48060, - [SMALL_STATE(523)] = 48195, - [SMALL_STATE(524)] = 48330, - [SMALL_STATE(525)] = 48465, - [SMALL_STATE(526)] = 48600, - [SMALL_STATE(527)] = 48735, - [SMALL_STATE(528)] = 48870, - [SMALL_STATE(529)] = 49005, - [SMALL_STATE(530)] = 49140, - [SMALL_STATE(531)] = 49275, - [SMALL_STATE(532)] = 49410, - [SMALL_STATE(533)] = 49545, - [SMALL_STATE(534)] = 49680, - [SMALL_STATE(535)] = 49815, - [SMALL_STATE(536)] = 49950, - [SMALL_STATE(537)] = 50085, - [SMALL_STATE(538)] = 50220, - [SMALL_STATE(539)] = 50355, - [SMALL_STATE(540)] = 50490, - [SMALL_STATE(541)] = 50625, - [SMALL_STATE(542)] = 50760, - [SMALL_STATE(543)] = 50895, - [SMALL_STATE(544)] = 51030, - [SMALL_STATE(545)] = 51165, - [SMALL_STATE(546)] = 51300, - [SMALL_STATE(547)] = 51435, - [SMALL_STATE(548)] = 51570, - [SMALL_STATE(549)] = 51705, - [SMALL_STATE(550)] = 51840, - [SMALL_STATE(551)] = 51975, - [SMALL_STATE(552)] = 52110, - [SMALL_STATE(553)] = 52245, - [SMALL_STATE(554)] = 52380, - [SMALL_STATE(555)] = 52515, - [SMALL_STATE(556)] = 52650, - [SMALL_STATE(557)] = 52785, - [SMALL_STATE(558)] = 52920, - [SMALL_STATE(559)] = 53055, - [SMALL_STATE(560)] = 53190, - [SMALL_STATE(561)] = 53325, - [SMALL_STATE(562)] = 53460, - [SMALL_STATE(563)] = 53595, - [SMALL_STATE(564)] = 53730, - [SMALL_STATE(565)] = 53865, - [SMALL_STATE(566)] = 54000, - [SMALL_STATE(567)] = 54135, - [SMALL_STATE(568)] = 54270, - [SMALL_STATE(569)] = 54405, - [SMALL_STATE(570)] = 54540, - [SMALL_STATE(571)] = 54675, - [SMALL_STATE(572)] = 54810, - [SMALL_STATE(573)] = 54945, - [SMALL_STATE(574)] = 55080, - [SMALL_STATE(575)] = 55215, - [SMALL_STATE(576)] = 55350, - [SMALL_STATE(577)] = 55485, - [SMALL_STATE(578)] = 55620, - [SMALL_STATE(579)] = 55755, - [SMALL_STATE(580)] = 55890, - [SMALL_STATE(581)] = 56025, - [SMALL_STATE(582)] = 56160, - [SMALL_STATE(583)] = 56295, - [SMALL_STATE(584)] = 56430, - [SMALL_STATE(585)] = 56565, - [SMALL_STATE(586)] = 56700, - [SMALL_STATE(587)] = 56835, - [SMALL_STATE(588)] = 56970, - [SMALL_STATE(589)] = 57105, - [SMALL_STATE(590)] = 57240, - [SMALL_STATE(591)] = 57375, - [SMALL_STATE(592)] = 57510, - [SMALL_STATE(593)] = 57645, - [SMALL_STATE(594)] = 57780, - [SMALL_STATE(595)] = 57915, - [SMALL_STATE(596)] = 58050, - [SMALL_STATE(597)] = 58185, - [SMALL_STATE(598)] = 58320, - [SMALL_STATE(599)] = 58455, - [SMALL_STATE(600)] = 58590, - [SMALL_STATE(601)] = 58725, - [SMALL_STATE(602)] = 58860, - [SMALL_STATE(603)] = 58995, - [SMALL_STATE(604)] = 59130, - [SMALL_STATE(605)] = 59265, - [SMALL_STATE(606)] = 59400, - [SMALL_STATE(607)] = 59535, - [SMALL_STATE(608)] = 59670, - [SMALL_STATE(609)] = 59805, - [SMALL_STATE(610)] = 59940, - [SMALL_STATE(611)] = 60075, - [SMALL_STATE(612)] = 60210, - [SMALL_STATE(613)] = 60345, - [SMALL_STATE(614)] = 60480, - [SMALL_STATE(615)] = 60615, - [SMALL_STATE(616)] = 60750, - [SMALL_STATE(617)] = 60885, - [SMALL_STATE(618)] = 61020, - [SMALL_STATE(619)] = 61155, - [SMALL_STATE(620)] = 61290, - [SMALL_STATE(621)] = 61425, - [SMALL_STATE(622)] = 61560, - [SMALL_STATE(623)] = 61695, - [SMALL_STATE(624)] = 61830, - [SMALL_STATE(625)] = 61965, - [SMALL_STATE(626)] = 62100, - [SMALL_STATE(627)] = 62235, - [SMALL_STATE(628)] = 62370, - [SMALL_STATE(629)] = 62505, - [SMALL_STATE(630)] = 62640, - [SMALL_STATE(631)] = 62775, - [SMALL_STATE(632)] = 62910, - [SMALL_STATE(633)] = 63045, - [SMALL_STATE(634)] = 63180, - [SMALL_STATE(635)] = 63315, - [SMALL_STATE(636)] = 63450, - [SMALL_STATE(637)] = 63585, - [SMALL_STATE(638)] = 63720, - [SMALL_STATE(639)] = 63855, - [SMALL_STATE(640)] = 63990, - [SMALL_STATE(641)] = 64125, - [SMALL_STATE(642)] = 64260, - [SMALL_STATE(643)] = 64395, - [SMALL_STATE(644)] = 64530, - [SMALL_STATE(645)] = 64665, - [SMALL_STATE(646)] = 64800, - [SMALL_STATE(647)] = 64935, - [SMALL_STATE(648)] = 65070, - [SMALL_STATE(649)] = 65205, - [SMALL_STATE(650)] = 65340, - [SMALL_STATE(651)] = 65475, - [SMALL_STATE(652)] = 65610, - [SMALL_STATE(653)] = 65745, - [SMALL_STATE(654)] = 65880, - [SMALL_STATE(655)] = 66015, - [SMALL_STATE(656)] = 66150, - [SMALL_STATE(657)] = 66285, - [SMALL_STATE(658)] = 66420, - [SMALL_STATE(659)] = 66555, - [SMALL_STATE(660)] = 66690, - [SMALL_STATE(661)] = 66825, - [SMALL_STATE(662)] = 66960, - [SMALL_STATE(663)] = 67095, - [SMALL_STATE(664)] = 67230, - [SMALL_STATE(665)] = 67365, - [SMALL_STATE(666)] = 67500, - [SMALL_STATE(667)] = 67635, - [SMALL_STATE(668)] = 67770, - [SMALL_STATE(669)] = 67905, - [SMALL_STATE(670)] = 68040, - [SMALL_STATE(671)] = 68175, - [SMALL_STATE(672)] = 68310, - [SMALL_STATE(673)] = 68445, - [SMALL_STATE(674)] = 68580, - [SMALL_STATE(675)] = 68715, - [SMALL_STATE(676)] = 68850, - [SMALL_STATE(677)] = 68985, - [SMALL_STATE(678)] = 69120, - [SMALL_STATE(679)] = 69255, - [SMALL_STATE(680)] = 69390, - [SMALL_STATE(681)] = 69525, - [SMALL_STATE(682)] = 69660, - [SMALL_STATE(683)] = 69795, - [SMALL_STATE(684)] = 69930, - [SMALL_STATE(685)] = 70065, - [SMALL_STATE(686)] = 70200, - [SMALL_STATE(687)] = 70335, - [SMALL_STATE(688)] = 70470, - [SMALL_STATE(689)] = 70605, - [SMALL_STATE(690)] = 70740, - [SMALL_STATE(691)] = 70875, - [SMALL_STATE(692)] = 71010, - [SMALL_STATE(693)] = 71145, - [SMALL_STATE(694)] = 71280, - [SMALL_STATE(695)] = 71415, - [SMALL_STATE(696)] = 71550, - [SMALL_STATE(697)] = 71685, - [SMALL_STATE(698)] = 71820, - [SMALL_STATE(699)] = 71955, - [SMALL_STATE(700)] = 72090, - [SMALL_STATE(701)] = 72225, - [SMALL_STATE(702)] = 72360, - [SMALL_STATE(703)] = 72495, - [SMALL_STATE(704)] = 72630, - [SMALL_STATE(705)] = 72765, - [SMALL_STATE(706)] = 72900, - [SMALL_STATE(707)] = 73035, - [SMALL_STATE(708)] = 73170, - [SMALL_STATE(709)] = 73305, - [SMALL_STATE(710)] = 73440, - [SMALL_STATE(711)] = 73575, - [SMALL_STATE(712)] = 73710, - [SMALL_STATE(713)] = 73845, - [SMALL_STATE(714)] = 73980, - [SMALL_STATE(715)] = 74115, - [SMALL_STATE(716)] = 74250, - [SMALL_STATE(717)] = 74385, - [SMALL_STATE(718)] = 74520, - [SMALL_STATE(719)] = 74655, - [SMALL_STATE(720)] = 74790, - [SMALL_STATE(721)] = 74925, - [SMALL_STATE(722)] = 75060, - [SMALL_STATE(723)] = 75195, - [SMALL_STATE(724)] = 75330, - [SMALL_STATE(725)] = 75465, - [SMALL_STATE(726)] = 75600, - [SMALL_STATE(727)] = 75735, - [SMALL_STATE(728)] = 75870, - [SMALL_STATE(729)] = 76005, - [SMALL_STATE(730)] = 76140, - [SMALL_STATE(731)] = 76275, - [SMALL_STATE(732)] = 76410, - [SMALL_STATE(733)] = 76545, - [SMALL_STATE(734)] = 76680, - [SMALL_STATE(735)] = 76815, - [SMALL_STATE(736)] = 76950, - [SMALL_STATE(737)] = 77085, - [SMALL_STATE(738)] = 77220, - [SMALL_STATE(739)] = 77355, - [SMALL_STATE(740)] = 77490, - [SMALL_STATE(741)] = 77625, - [SMALL_STATE(742)] = 77760, - [SMALL_STATE(743)] = 77895, - [SMALL_STATE(744)] = 78030, - [SMALL_STATE(745)] = 78165, - [SMALL_STATE(746)] = 78300, - [SMALL_STATE(747)] = 78435, - [SMALL_STATE(748)] = 78570, - [SMALL_STATE(749)] = 78705, - [SMALL_STATE(750)] = 78840, - [SMALL_STATE(751)] = 78975, - [SMALL_STATE(752)] = 79110, - [SMALL_STATE(753)] = 79245, - [SMALL_STATE(754)] = 79380, - [SMALL_STATE(755)] = 79515, - [SMALL_STATE(756)] = 79650, - [SMALL_STATE(757)] = 79785, - [SMALL_STATE(758)] = 79920, - [SMALL_STATE(759)] = 80055, - [SMALL_STATE(760)] = 80190, - [SMALL_STATE(761)] = 80325, - [SMALL_STATE(762)] = 80460, - [SMALL_STATE(763)] = 80595, - [SMALL_STATE(764)] = 80730, - [SMALL_STATE(765)] = 80865, - [SMALL_STATE(766)] = 81000, - [SMALL_STATE(767)] = 81135, - [SMALL_STATE(768)] = 81270, - [SMALL_STATE(769)] = 81405, - [SMALL_STATE(770)] = 81540, - [SMALL_STATE(771)] = 81675, - [SMALL_STATE(772)] = 81810, - [SMALL_STATE(773)] = 81945, - [SMALL_STATE(774)] = 82080, - [SMALL_STATE(775)] = 82215, - [SMALL_STATE(776)] = 82350, - [SMALL_STATE(777)] = 82485, - [SMALL_STATE(778)] = 82620, - [SMALL_STATE(779)] = 82755, - [SMALL_STATE(780)] = 82890, - [SMALL_STATE(781)] = 83025, - [SMALL_STATE(782)] = 83160, - [SMALL_STATE(783)] = 83295, - [SMALL_STATE(784)] = 83430, - [SMALL_STATE(785)] = 83565, - [SMALL_STATE(786)] = 83700, - [SMALL_STATE(787)] = 83835, - [SMALL_STATE(788)] = 83970, - [SMALL_STATE(789)] = 84105, - [SMALL_STATE(790)] = 84240, - [SMALL_STATE(791)] = 84375, - [SMALL_STATE(792)] = 84510, - [SMALL_STATE(793)] = 84645, - [SMALL_STATE(794)] = 84780, - [SMALL_STATE(795)] = 84915, - [SMALL_STATE(796)] = 85050, - [SMALL_STATE(797)] = 85185, - [SMALL_STATE(798)] = 85320, - [SMALL_STATE(799)] = 85455, - [SMALL_STATE(800)] = 85590, - [SMALL_STATE(801)] = 85725, - [SMALL_STATE(802)] = 85860, - [SMALL_STATE(803)] = 85995, - [SMALL_STATE(804)] = 86130, - [SMALL_STATE(805)] = 86265, - [SMALL_STATE(806)] = 86400, - [SMALL_STATE(807)] = 86535, - [SMALL_STATE(808)] = 86670, - [SMALL_STATE(809)] = 86805, - [SMALL_STATE(810)] = 86940, - [SMALL_STATE(811)] = 87075, - [SMALL_STATE(812)] = 87210, - [SMALL_STATE(813)] = 87345, - [SMALL_STATE(814)] = 87414, - [SMALL_STATE(815)] = 87479, - [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)] = 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)] = 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, + [SMALL_STATE(405)] = 0, + [SMALL_STATE(406)] = 135, + [SMALL_STATE(407)] = 270, + [SMALL_STATE(408)] = 405, + [SMALL_STATE(409)] = 540, + [SMALL_STATE(410)] = 675, + [SMALL_STATE(411)] = 810, + [SMALL_STATE(412)] = 945, + [SMALL_STATE(413)] = 1080, + [SMALL_STATE(414)] = 1215, + [SMALL_STATE(415)] = 1350, + [SMALL_STATE(416)] = 1485, + [SMALL_STATE(417)] = 1620, + [SMALL_STATE(418)] = 1755, + [SMALL_STATE(419)] = 1890, + [SMALL_STATE(420)] = 2025, + [SMALL_STATE(421)] = 2160, + [SMALL_STATE(422)] = 2295, + [SMALL_STATE(423)] = 2430, + [SMALL_STATE(424)] = 2565, + [SMALL_STATE(425)] = 2700, + [SMALL_STATE(426)] = 2835, + [SMALL_STATE(427)] = 2970, + [SMALL_STATE(428)] = 3105, + [SMALL_STATE(429)] = 3240, + [SMALL_STATE(430)] = 3375, + [SMALL_STATE(431)] = 3510, + [SMALL_STATE(432)] = 3645, + [SMALL_STATE(433)] = 3780, + [SMALL_STATE(434)] = 3915, + [SMALL_STATE(435)] = 4050, + [SMALL_STATE(436)] = 4185, + [SMALL_STATE(437)] = 4320, + [SMALL_STATE(438)] = 4455, + [SMALL_STATE(439)] = 4590, + [SMALL_STATE(440)] = 4725, + [SMALL_STATE(441)] = 4860, + [SMALL_STATE(442)] = 4995, + [SMALL_STATE(443)] = 5130, + [SMALL_STATE(444)] = 5265, + [SMALL_STATE(445)] = 5400, + [SMALL_STATE(446)] = 5535, + [SMALL_STATE(447)] = 5670, + [SMALL_STATE(448)] = 5805, + [SMALL_STATE(449)] = 5940, + [SMALL_STATE(450)] = 6075, + [SMALL_STATE(451)] = 6210, + [SMALL_STATE(452)] = 6345, + [SMALL_STATE(453)] = 6480, + [SMALL_STATE(454)] = 6615, + [SMALL_STATE(455)] = 6750, + [SMALL_STATE(456)] = 6885, + [SMALL_STATE(457)] = 7020, + [SMALL_STATE(458)] = 7155, + [SMALL_STATE(459)] = 7290, + [SMALL_STATE(460)] = 7425, + [SMALL_STATE(461)] = 7560, + [SMALL_STATE(462)] = 7695, + [SMALL_STATE(463)] = 7830, + [SMALL_STATE(464)] = 7965, + [SMALL_STATE(465)] = 8100, + [SMALL_STATE(466)] = 8235, + [SMALL_STATE(467)] = 8370, + [SMALL_STATE(468)] = 8505, + [SMALL_STATE(469)] = 8640, + [SMALL_STATE(470)] = 8775, + [SMALL_STATE(471)] = 8910, + [SMALL_STATE(472)] = 9045, + [SMALL_STATE(473)] = 9180, + [SMALL_STATE(474)] = 9315, + [SMALL_STATE(475)] = 9450, + [SMALL_STATE(476)] = 9585, + [SMALL_STATE(477)] = 9720, + [SMALL_STATE(478)] = 9855, + [SMALL_STATE(479)] = 9990, + [SMALL_STATE(480)] = 10125, + [SMALL_STATE(481)] = 10260, + [SMALL_STATE(482)] = 10395, + [SMALL_STATE(483)] = 10530, + [SMALL_STATE(484)] = 10665, + [SMALL_STATE(485)] = 10800, + [SMALL_STATE(486)] = 10935, + [SMALL_STATE(487)] = 11070, + [SMALL_STATE(488)] = 11205, + [SMALL_STATE(489)] = 11340, + [SMALL_STATE(490)] = 11475, + [SMALL_STATE(491)] = 11610, + [SMALL_STATE(492)] = 11745, + [SMALL_STATE(493)] = 11880, + [SMALL_STATE(494)] = 12015, + [SMALL_STATE(495)] = 12150, + [SMALL_STATE(496)] = 12285, + [SMALL_STATE(497)] = 12420, + [SMALL_STATE(498)] = 12555, + [SMALL_STATE(499)] = 12690, + [SMALL_STATE(500)] = 12825, + [SMALL_STATE(501)] = 12960, + [SMALL_STATE(502)] = 13095, + [SMALL_STATE(503)] = 13230, + [SMALL_STATE(504)] = 13365, + [SMALL_STATE(505)] = 13500, + [SMALL_STATE(506)] = 13635, + [SMALL_STATE(507)] = 13770, + [SMALL_STATE(508)] = 13905, + [SMALL_STATE(509)] = 14040, + [SMALL_STATE(510)] = 14175, + [SMALL_STATE(511)] = 14310, + [SMALL_STATE(512)] = 14445, + [SMALL_STATE(513)] = 14580, + [SMALL_STATE(514)] = 14715, + [SMALL_STATE(515)] = 14850, + [SMALL_STATE(516)] = 14985, + [SMALL_STATE(517)] = 15120, + [SMALL_STATE(518)] = 15255, + [SMALL_STATE(519)] = 15390, + [SMALL_STATE(520)] = 15525, + [SMALL_STATE(521)] = 15660, + [SMALL_STATE(522)] = 15795, + [SMALL_STATE(523)] = 15930, + [SMALL_STATE(524)] = 16065, + [SMALL_STATE(525)] = 16200, + [SMALL_STATE(526)] = 16335, + [SMALL_STATE(527)] = 16470, + [SMALL_STATE(528)] = 16605, + [SMALL_STATE(529)] = 16740, + [SMALL_STATE(530)] = 16875, + [SMALL_STATE(531)] = 17010, + [SMALL_STATE(532)] = 17145, + [SMALL_STATE(533)] = 17280, + [SMALL_STATE(534)] = 17415, + [SMALL_STATE(535)] = 17550, + [SMALL_STATE(536)] = 17685, + [SMALL_STATE(537)] = 17820, + [SMALL_STATE(538)] = 17955, + [SMALL_STATE(539)] = 18090, + [SMALL_STATE(540)] = 18225, + [SMALL_STATE(541)] = 18360, + [SMALL_STATE(542)] = 18495, + [SMALL_STATE(543)] = 18630, + [SMALL_STATE(544)] = 18765, + [SMALL_STATE(545)] = 18900, + [SMALL_STATE(546)] = 19035, + [SMALL_STATE(547)] = 19170, + [SMALL_STATE(548)] = 19305, + [SMALL_STATE(549)] = 19440, + [SMALL_STATE(550)] = 19575, + [SMALL_STATE(551)] = 19710, + [SMALL_STATE(552)] = 19845, + [SMALL_STATE(553)] = 19980, + [SMALL_STATE(554)] = 20115, + [SMALL_STATE(555)] = 20250, + [SMALL_STATE(556)] = 20385, + [SMALL_STATE(557)] = 20520, + [SMALL_STATE(558)] = 20655, + [SMALL_STATE(559)] = 20790, + [SMALL_STATE(560)] = 20925, + [SMALL_STATE(561)] = 21060, + [SMALL_STATE(562)] = 21195, + [SMALL_STATE(563)] = 21330, + [SMALL_STATE(564)] = 21465, + [SMALL_STATE(565)] = 21600, + [SMALL_STATE(566)] = 21735, + [SMALL_STATE(567)] = 21870, + [SMALL_STATE(568)] = 22005, + [SMALL_STATE(569)] = 22140, + [SMALL_STATE(570)] = 22275, + [SMALL_STATE(571)] = 22410, + [SMALL_STATE(572)] = 22545, + [SMALL_STATE(573)] = 22680, + [SMALL_STATE(574)] = 22815, + [SMALL_STATE(575)] = 22950, + [SMALL_STATE(576)] = 23085, + [SMALL_STATE(577)] = 23220, + [SMALL_STATE(578)] = 23355, + [SMALL_STATE(579)] = 23490, + [SMALL_STATE(580)] = 23625, + [SMALL_STATE(581)] = 23760, + [SMALL_STATE(582)] = 23895, + [SMALL_STATE(583)] = 24030, + [SMALL_STATE(584)] = 24165, + [SMALL_STATE(585)] = 24300, + [SMALL_STATE(586)] = 24435, + [SMALL_STATE(587)] = 24570, + [SMALL_STATE(588)] = 24705, + [SMALL_STATE(589)] = 24840, + [SMALL_STATE(590)] = 24975, + [SMALL_STATE(591)] = 25110, + [SMALL_STATE(592)] = 25245, + [SMALL_STATE(593)] = 25380, + [SMALL_STATE(594)] = 25515, + [SMALL_STATE(595)] = 25650, + [SMALL_STATE(596)] = 25785, + [SMALL_STATE(597)] = 25920, + [SMALL_STATE(598)] = 26055, + [SMALL_STATE(599)] = 26190, + [SMALL_STATE(600)] = 26325, + [SMALL_STATE(601)] = 26460, + [SMALL_STATE(602)] = 26595, + [SMALL_STATE(603)] = 26730, + [SMALL_STATE(604)] = 26865, + [SMALL_STATE(605)] = 27000, + [SMALL_STATE(606)] = 27135, + [SMALL_STATE(607)] = 27270, + [SMALL_STATE(608)] = 27405, + [SMALL_STATE(609)] = 27540, + [SMALL_STATE(610)] = 27675, + [SMALL_STATE(611)] = 27810, + [SMALL_STATE(612)] = 27945, + [SMALL_STATE(613)] = 28080, + [SMALL_STATE(614)] = 28215, + [SMALL_STATE(615)] = 28350, + [SMALL_STATE(616)] = 28485, + [SMALL_STATE(617)] = 28620, + [SMALL_STATE(618)] = 28755, + [SMALL_STATE(619)] = 28890, + [SMALL_STATE(620)] = 29025, + [SMALL_STATE(621)] = 29160, + [SMALL_STATE(622)] = 29295, + [SMALL_STATE(623)] = 29430, + [SMALL_STATE(624)] = 29565, + [SMALL_STATE(625)] = 29700, + [SMALL_STATE(626)] = 29835, + [SMALL_STATE(627)] = 29970, + [SMALL_STATE(628)] = 30105, + [SMALL_STATE(629)] = 30240, + [SMALL_STATE(630)] = 30375, + [SMALL_STATE(631)] = 30510, + [SMALL_STATE(632)] = 30645, + [SMALL_STATE(633)] = 30780, + [SMALL_STATE(634)] = 30915, + [SMALL_STATE(635)] = 31050, + [SMALL_STATE(636)] = 31185, + [SMALL_STATE(637)] = 31320, + [SMALL_STATE(638)] = 31455, + [SMALL_STATE(639)] = 31590, + [SMALL_STATE(640)] = 31725, + [SMALL_STATE(641)] = 31860, + [SMALL_STATE(642)] = 31995, + [SMALL_STATE(643)] = 32130, + [SMALL_STATE(644)] = 32265, + [SMALL_STATE(645)] = 32400, + [SMALL_STATE(646)] = 32535, + [SMALL_STATE(647)] = 32670, + [SMALL_STATE(648)] = 32805, + [SMALL_STATE(649)] = 32940, + [SMALL_STATE(650)] = 33075, + [SMALL_STATE(651)] = 33210, + [SMALL_STATE(652)] = 33345, + [SMALL_STATE(653)] = 33480, + [SMALL_STATE(654)] = 33615, + [SMALL_STATE(655)] = 33750, + [SMALL_STATE(656)] = 33885, + [SMALL_STATE(657)] = 34020, + [SMALL_STATE(658)] = 34155, + [SMALL_STATE(659)] = 34290, + [SMALL_STATE(660)] = 34425, + [SMALL_STATE(661)] = 34560, + [SMALL_STATE(662)] = 34695, + [SMALL_STATE(663)] = 34832, + [SMALL_STATE(664)] = 34967, + [SMALL_STATE(665)] = 35102, + [SMALL_STATE(666)] = 35237, + [SMALL_STATE(667)] = 35372, + [SMALL_STATE(668)] = 35507, + [SMALL_STATE(669)] = 35642, + [SMALL_STATE(670)] = 35777, + [SMALL_STATE(671)] = 35912, + [SMALL_STATE(672)] = 36047, + [SMALL_STATE(673)] = 36182, + [SMALL_STATE(674)] = 36317, + [SMALL_STATE(675)] = 36452, + [SMALL_STATE(676)] = 36587, + [SMALL_STATE(677)] = 36722, + [SMALL_STATE(678)] = 36857, + [SMALL_STATE(679)] = 36992, + [SMALL_STATE(680)] = 37127, + [SMALL_STATE(681)] = 37262, + [SMALL_STATE(682)] = 37397, + [SMALL_STATE(683)] = 37532, + [SMALL_STATE(684)] = 37667, + [SMALL_STATE(685)] = 37802, + [SMALL_STATE(686)] = 37937, + [SMALL_STATE(687)] = 38072, + [SMALL_STATE(688)] = 38207, + [SMALL_STATE(689)] = 38342, + [SMALL_STATE(690)] = 38477, + [SMALL_STATE(691)] = 38612, + [SMALL_STATE(692)] = 38747, + [SMALL_STATE(693)] = 38882, + [SMALL_STATE(694)] = 39017, + [SMALL_STATE(695)] = 39152, + [SMALL_STATE(696)] = 39287, + [SMALL_STATE(697)] = 39422, + [SMALL_STATE(698)] = 39557, + [SMALL_STATE(699)] = 39692, + [SMALL_STATE(700)] = 39827, + [SMALL_STATE(701)] = 39962, + [SMALL_STATE(702)] = 40097, + [SMALL_STATE(703)] = 40232, + [SMALL_STATE(704)] = 40367, + [SMALL_STATE(705)] = 40502, + [SMALL_STATE(706)] = 40637, + [SMALL_STATE(707)] = 40772, + [SMALL_STATE(708)] = 40907, + [SMALL_STATE(709)] = 41042, + [SMALL_STATE(710)] = 41177, + [SMALL_STATE(711)] = 41312, + [SMALL_STATE(712)] = 41447, + [SMALL_STATE(713)] = 41582, + [SMALL_STATE(714)] = 41717, + [SMALL_STATE(715)] = 41852, + [SMALL_STATE(716)] = 41987, + [SMALL_STATE(717)] = 42122, + [SMALL_STATE(718)] = 42257, + [SMALL_STATE(719)] = 42392, + [SMALL_STATE(720)] = 42527, + [SMALL_STATE(721)] = 42662, + [SMALL_STATE(722)] = 42797, + [SMALL_STATE(723)] = 42932, + [SMALL_STATE(724)] = 43067, + [SMALL_STATE(725)] = 43202, + [SMALL_STATE(726)] = 43337, + [SMALL_STATE(727)] = 43472, + [SMALL_STATE(728)] = 43607, + [SMALL_STATE(729)] = 43742, + [SMALL_STATE(730)] = 43877, + [SMALL_STATE(731)] = 44012, + [SMALL_STATE(732)] = 44147, + [SMALL_STATE(733)] = 44282, + [SMALL_STATE(734)] = 44417, + [SMALL_STATE(735)] = 44552, + [SMALL_STATE(736)] = 44687, + [SMALL_STATE(737)] = 44822, + [SMALL_STATE(738)] = 44957, + [SMALL_STATE(739)] = 45092, + [SMALL_STATE(740)] = 45227, + [SMALL_STATE(741)] = 45362, + [SMALL_STATE(742)] = 45497, + [SMALL_STATE(743)] = 45632, + [SMALL_STATE(744)] = 45767, + [SMALL_STATE(745)] = 45902, + [SMALL_STATE(746)] = 46037, + [SMALL_STATE(747)] = 46172, + [SMALL_STATE(748)] = 46307, + [SMALL_STATE(749)] = 46442, + [SMALL_STATE(750)] = 46577, + [SMALL_STATE(751)] = 46712, + [SMALL_STATE(752)] = 46847, + [SMALL_STATE(753)] = 46982, + [SMALL_STATE(754)] = 47117, + [SMALL_STATE(755)] = 47252, + [SMALL_STATE(756)] = 47387, + [SMALL_STATE(757)] = 47522, + [SMALL_STATE(758)] = 47657, + [SMALL_STATE(759)] = 47792, + [SMALL_STATE(760)] = 47927, + [SMALL_STATE(761)] = 48062, + [SMALL_STATE(762)] = 48197, + [SMALL_STATE(763)] = 48332, + [SMALL_STATE(764)] = 48467, + [SMALL_STATE(765)] = 48602, + [SMALL_STATE(766)] = 48737, + [SMALL_STATE(767)] = 48872, + [SMALL_STATE(768)] = 49007, + [SMALL_STATE(769)] = 49142, + [SMALL_STATE(770)] = 49277, + [SMALL_STATE(771)] = 49412, + [SMALL_STATE(772)] = 49547, + [SMALL_STATE(773)] = 49682, + [SMALL_STATE(774)] = 49817, + [SMALL_STATE(775)] = 49952, + [SMALL_STATE(776)] = 50087, + [SMALL_STATE(777)] = 50222, + [SMALL_STATE(778)] = 50357, + [SMALL_STATE(779)] = 50492, + [SMALL_STATE(780)] = 50627, + [SMALL_STATE(781)] = 50762, + [SMALL_STATE(782)] = 50897, + [SMALL_STATE(783)] = 51032, + [SMALL_STATE(784)] = 51167, + [SMALL_STATE(785)] = 51302, + [SMALL_STATE(786)] = 51437, + [SMALL_STATE(787)] = 51572, + [SMALL_STATE(788)] = 51707, + [SMALL_STATE(789)] = 51842, + [SMALL_STATE(790)] = 51977, + [SMALL_STATE(791)] = 52112, + [SMALL_STATE(792)] = 52247, + [SMALL_STATE(793)] = 52382, + [SMALL_STATE(794)] = 52517, + [SMALL_STATE(795)] = 52652, + [SMALL_STATE(796)] = 52787, + [SMALL_STATE(797)] = 52922, + [SMALL_STATE(798)] = 53057, + [SMALL_STATE(799)] = 53192, + [SMALL_STATE(800)] = 53327, + [SMALL_STATE(801)] = 53462, + [SMALL_STATE(802)] = 53597, + [SMALL_STATE(803)] = 53732, + [SMALL_STATE(804)] = 53867, + [SMALL_STATE(805)] = 54002, + [SMALL_STATE(806)] = 54137, + [SMALL_STATE(807)] = 54272, + [SMALL_STATE(808)] = 54407, + [SMALL_STATE(809)] = 54542, + [SMALL_STATE(810)] = 54677, + [SMALL_STATE(811)] = 54812, + [SMALL_STATE(812)] = 54947, + [SMALL_STATE(813)] = 55082, + [SMALL_STATE(814)] = 55217, + [SMALL_STATE(815)] = 55352, + [SMALL_STATE(816)] = 55487, + [SMALL_STATE(817)] = 55622, + [SMALL_STATE(818)] = 55757, + [SMALL_STATE(819)] = 55892, + [SMALL_STATE(820)] = 56027, + [SMALL_STATE(821)] = 56162, + [SMALL_STATE(822)] = 56297, + [SMALL_STATE(823)] = 56432, + [SMALL_STATE(824)] = 56567, + [SMALL_STATE(825)] = 56702, + [SMALL_STATE(826)] = 56837, + [SMALL_STATE(827)] = 56972, + [SMALL_STATE(828)] = 57107, + [SMALL_STATE(829)] = 57242, + [SMALL_STATE(830)] = 57377, + [SMALL_STATE(831)] = 57512, + [SMALL_STATE(832)] = 57647, + [SMALL_STATE(833)] = 57782, + [SMALL_STATE(834)] = 57917, + [SMALL_STATE(835)] = 58052, + [SMALL_STATE(836)] = 58187, + [SMALL_STATE(837)] = 58322, + [SMALL_STATE(838)] = 58457, + [SMALL_STATE(839)] = 58592, + [SMALL_STATE(840)] = 58727, + [SMALL_STATE(841)] = 58862, + [SMALL_STATE(842)] = 58997, + [SMALL_STATE(843)] = 59132, + [SMALL_STATE(844)] = 59267, + [SMALL_STATE(845)] = 59402, + [SMALL_STATE(846)] = 59537, + [SMALL_STATE(847)] = 59672, + [SMALL_STATE(848)] = 59807, + [SMALL_STATE(849)] = 59942, + [SMALL_STATE(850)] = 60077, + [SMALL_STATE(851)] = 60212, + [SMALL_STATE(852)] = 60347, + [SMALL_STATE(853)] = 60482, + [SMALL_STATE(854)] = 60617, + [SMALL_STATE(855)] = 60752, + [SMALL_STATE(856)] = 60887, + [SMALL_STATE(857)] = 61022, + [SMALL_STATE(858)] = 61157, + [SMALL_STATE(859)] = 61292, + [SMALL_STATE(860)] = 61427, + [SMALL_STATE(861)] = 61562, + [SMALL_STATE(862)] = 61697, + [SMALL_STATE(863)] = 61832, + [SMALL_STATE(864)] = 61967, + [SMALL_STATE(865)] = 62102, + [SMALL_STATE(866)] = 62237, + [SMALL_STATE(867)] = 62372, + [SMALL_STATE(868)] = 62507, + [SMALL_STATE(869)] = 62642, + [SMALL_STATE(870)] = 62777, + [SMALL_STATE(871)] = 62912, + [SMALL_STATE(872)] = 63047, + [SMALL_STATE(873)] = 63182, + [SMALL_STATE(874)] = 63317, + [SMALL_STATE(875)] = 63452, + [SMALL_STATE(876)] = 63587, + [SMALL_STATE(877)] = 63722, + [SMALL_STATE(878)] = 63857, + [SMALL_STATE(879)] = 63992, + [SMALL_STATE(880)] = 64127, + [SMALL_STATE(881)] = 64262, + [SMALL_STATE(882)] = 64397, + [SMALL_STATE(883)] = 64532, + [SMALL_STATE(884)] = 64667, + [SMALL_STATE(885)] = 64802, + [SMALL_STATE(886)] = 64937, + [SMALL_STATE(887)] = 65072, + [SMALL_STATE(888)] = 65207, + [SMALL_STATE(889)] = 65342, + [SMALL_STATE(890)] = 65477, + [SMALL_STATE(891)] = 65612, + [SMALL_STATE(892)] = 65747, + [SMALL_STATE(893)] = 65882, + [SMALL_STATE(894)] = 66017, + [SMALL_STATE(895)] = 66152, + [SMALL_STATE(896)] = 66287, + [SMALL_STATE(897)] = 66422, + [SMALL_STATE(898)] = 66557, + [SMALL_STATE(899)] = 66692, + [SMALL_STATE(900)] = 66827, + [SMALL_STATE(901)] = 66962, + [SMALL_STATE(902)] = 67097, + [SMALL_STATE(903)] = 67232, + [SMALL_STATE(904)] = 67367, + [SMALL_STATE(905)] = 67502, + [SMALL_STATE(906)] = 67637, + [SMALL_STATE(907)] = 67772, + [SMALL_STATE(908)] = 67907, + [SMALL_STATE(909)] = 68042, + [SMALL_STATE(910)] = 68177, + [SMALL_STATE(911)] = 68312, + [SMALL_STATE(912)] = 68449, + [SMALL_STATE(913)] = 68584, + [SMALL_STATE(914)] = 68719, + [SMALL_STATE(915)] = 68854, + [SMALL_STATE(916)] = 68989, + [SMALL_STATE(917)] = 69124, + [SMALL_STATE(918)] = 69259, + [SMALL_STATE(919)] = 69394, + [SMALL_STATE(920)] = 69529, + [SMALL_STATE(921)] = 69664, + [SMALL_STATE(922)] = 69799, + [SMALL_STATE(923)] = 69934, + [SMALL_STATE(924)] = 70069, + [SMALL_STATE(925)] = 70204, + [SMALL_STATE(926)] = 70339, + [SMALL_STATE(927)] = 70474, + [SMALL_STATE(928)] = 70609, + [SMALL_STATE(929)] = 70744, + [SMALL_STATE(930)] = 70879, + [SMALL_STATE(931)] = 71014, + [SMALL_STATE(932)] = 71149, + [SMALL_STATE(933)] = 71284, + [SMALL_STATE(934)] = 71419, + [SMALL_STATE(935)] = 71554, + [SMALL_STATE(936)] = 71689, + [SMALL_STATE(937)] = 71824, + [SMALL_STATE(938)] = 71959, + [SMALL_STATE(939)] = 72094, + [SMALL_STATE(940)] = 72229, + [SMALL_STATE(941)] = 72364, + [SMALL_STATE(942)] = 72499, + [SMALL_STATE(943)] = 72634, + [SMALL_STATE(944)] = 72769, + [SMALL_STATE(945)] = 72904, + [SMALL_STATE(946)] = 73039, + [SMALL_STATE(947)] = 73174, + [SMALL_STATE(948)] = 73309, + [SMALL_STATE(949)] = 73444, + [SMALL_STATE(950)] = 73579, + [SMALL_STATE(951)] = 73714, + [SMALL_STATE(952)] = 73849, + [SMALL_STATE(953)] = 73984, + [SMALL_STATE(954)] = 74119, + [SMALL_STATE(955)] = 74254, + [SMALL_STATE(956)] = 74389, + [SMALL_STATE(957)] = 74524, + [SMALL_STATE(958)] = 74659, + [SMALL_STATE(959)] = 74794, + [SMALL_STATE(960)] = 74929, + [SMALL_STATE(961)] = 75064, + [SMALL_STATE(962)] = 75199, + [SMALL_STATE(963)] = 75334, + [SMALL_STATE(964)] = 75469, + [SMALL_STATE(965)] = 75604, + [SMALL_STATE(966)] = 75739, + [SMALL_STATE(967)] = 75874, + [SMALL_STATE(968)] = 76009, + [SMALL_STATE(969)] = 76144, + [SMALL_STATE(970)] = 76279, + [SMALL_STATE(971)] = 76414, + [SMALL_STATE(972)] = 76549, + [SMALL_STATE(973)] = 76684, + [SMALL_STATE(974)] = 76819, + [SMALL_STATE(975)] = 76954, + [SMALL_STATE(976)] = 77089, + [SMALL_STATE(977)] = 77225, + [SMALL_STATE(978)] = 77361, + [SMALL_STATE(979)] = 77497, + [SMALL_STATE(980)] = 77633, + [SMALL_STATE(981)] = 77769, + [SMALL_STATE(982)] = 77905, + [SMALL_STATE(983)] = 78041, + [SMALL_STATE(984)] = 78177, + [SMALL_STATE(985)] = 78313, + [SMALL_STATE(986)] = 78449, + [SMALL_STATE(987)] = 78585, + [SMALL_STATE(988)] = 78721, + [SMALL_STATE(989)] = 78857, + [SMALL_STATE(990)] = 78993, + [SMALL_STATE(991)] = 79063, + [SMALL_STATE(992)] = 79128, + [SMALL_STATE(993)] = 79197, + [SMALL_STATE(994)] = 79262, + [SMALL_STATE(995)] = 79331, + [SMALL_STATE(996)] = 79400, + [SMALL_STATE(997)] = 79464, + [SMALL_STATE(998)] = 79525, + [SMALL_STATE(999)] = 79586, + [SMALL_STATE(1000)] = 79647, + [SMALL_STATE(1001)] = 79708, + [SMALL_STATE(1002)] = 79769, + [SMALL_STATE(1003)] = 79830, + [SMALL_STATE(1004)] = 79891, + [SMALL_STATE(1005)] = 79952, + [SMALL_STATE(1006)] = 80013, + [SMALL_STATE(1007)] = 80074, + [SMALL_STATE(1008)] = 80135, + [SMALL_STATE(1009)] = 80196, + [SMALL_STATE(1010)] = 80257, + [SMALL_STATE(1011)] = 80318, + [SMALL_STATE(1012)] = 80379, + [SMALL_STATE(1013)] = 80440, + [SMALL_STATE(1014)] = 80501, + [SMALL_STATE(1015)] = 80562, + [SMALL_STATE(1016)] = 80623, + [SMALL_STATE(1017)] = 80684, + [SMALL_STATE(1018)] = 80745, + [SMALL_STATE(1019)] = 80806, + [SMALL_STATE(1020)] = 80867, + [SMALL_STATE(1021)] = 80928, + [SMALL_STATE(1022)] = 80989, + [SMALL_STATE(1023)] = 81050, + [SMALL_STATE(1024)] = 81111, + [SMALL_STATE(1025)] = 81172, + [SMALL_STATE(1026)] = 81233, + [SMALL_STATE(1027)] = 81294, + [SMALL_STATE(1028)] = 81355, + [SMALL_STATE(1029)] = 81416, + [SMALL_STATE(1030)] = 81477, + [SMALL_STATE(1031)] = 81538, + [SMALL_STATE(1032)] = 81599, + [SMALL_STATE(1033)] = 81660, + [SMALL_STATE(1034)] = 81721, + [SMALL_STATE(1035)] = 81782, + [SMALL_STATE(1036)] = 81843, + [SMALL_STATE(1037)] = 81904, + [SMALL_STATE(1038)] = 81965, + [SMALL_STATE(1039)] = 82026, + [SMALL_STATE(1040)] = 82087, + [SMALL_STATE(1041)] = 82148, + [SMALL_STATE(1042)] = 82209, + [SMALL_STATE(1043)] = 82270, + [SMALL_STATE(1044)] = 82331, + [SMALL_STATE(1045)] = 82396, + [SMALL_STATE(1046)] = 82457, + [SMALL_STATE(1047)] = 82518, + [SMALL_STATE(1048)] = 82579, + [SMALL_STATE(1049)] = 82640, + [SMALL_STATE(1050)] = 82701, + [SMALL_STATE(1051)] = 82762, + [SMALL_STATE(1052)] = 82823, + [SMALL_STATE(1053)] = 82884, + [SMALL_STATE(1054)] = 82945, + [SMALL_STATE(1055)] = 83006, + [SMALL_STATE(1056)] = 83067, + [SMALL_STATE(1057)] = 83128, + [SMALL_STATE(1058)] = 83189, + [SMALL_STATE(1059)] = 83250, + [SMALL_STATE(1060)] = 83311, + [SMALL_STATE(1061)] = 83376, + [SMALL_STATE(1062)] = 83437, + [SMALL_STATE(1063)] = 83498, + [SMALL_STATE(1064)] = 83559, + [SMALL_STATE(1065)] = 83620, + [SMALL_STATE(1066)] = 83681, + [SMALL_STATE(1067)] = 83742, + [SMALL_STATE(1068)] = 83803, + [SMALL_STATE(1069)] = 83864, + [SMALL_STATE(1070)] = 83925, + [SMALL_STATE(1071)] = 83986, + [SMALL_STATE(1072)] = 84047, + [SMALL_STATE(1073)] = 84108, + [SMALL_STATE(1074)] = 84173, + [SMALL_STATE(1075)] = 84238, + [SMALL_STATE(1076)] = 84299, + [SMALL_STATE(1077)] = 84360, + [SMALL_STATE(1078)] = 84421, + [SMALL_STATE(1079)] = 84482, + [SMALL_STATE(1080)] = 84543, + [SMALL_STATE(1081)] = 84604, + [SMALL_STATE(1082)] = 84665, + [SMALL_STATE(1083)] = 84726, + [SMALL_STATE(1084)] = 84787, + [SMALL_STATE(1085)] = 84848, + [SMALL_STATE(1086)] = 84909, + [SMALL_STATE(1087)] = 84970, + [SMALL_STATE(1088)] = 85031, + [SMALL_STATE(1089)] = 85092, + [SMALL_STATE(1090)] = 85157, + [SMALL_STATE(1091)] = 85218, + [SMALL_STATE(1092)] = 85279, + [SMALL_STATE(1093)] = 85344, + [SMALL_STATE(1094)] = 85405, + [SMALL_STATE(1095)] = 85466, + [SMALL_STATE(1096)] = 85527, + [SMALL_STATE(1097)] = 85588, + [SMALL_STATE(1098)] = 85649, + [SMALL_STATE(1099)] = 85710, + [SMALL_STATE(1100)] = 85771, + [SMALL_STATE(1101)] = 85832, + [SMALL_STATE(1102)] = 85893, + [SMALL_STATE(1103)] = 85954, + [SMALL_STATE(1104)] = 86015, + [SMALL_STATE(1105)] = 86076, + [SMALL_STATE(1106)] = 86137, + [SMALL_STATE(1107)] = 86198, + [SMALL_STATE(1108)] = 86259, + [SMALL_STATE(1109)] = 86320, + [SMALL_STATE(1110)] = 86381, + [SMALL_STATE(1111)] = 86442, + [SMALL_STATE(1112)] = 86503, + [SMALL_STATE(1113)] = 86568, + [SMALL_STATE(1114)] = 86629, + [SMALL_STATE(1115)] = 86692, + [SMALL_STATE(1116)] = 86757, + [SMALL_STATE(1117)] = 86822, + [SMALL_STATE(1118)] = 86883, + [SMALL_STATE(1119)] = 86944, + [SMALL_STATE(1120)] = 87009, + [SMALL_STATE(1121)] = 87070, + [SMALL_STATE(1122)] = 87135, + [SMALL_STATE(1123)] = 87196, + [SMALL_STATE(1124)] = 87257, + [SMALL_STATE(1125)] = 87318, + [SMALL_STATE(1126)] = 87383, + [SMALL_STATE(1127)] = 87444, + [SMALL_STATE(1128)] = 87505, + [SMALL_STATE(1129)] = 87570, + [SMALL_STATE(1130)] = 87635, + [SMALL_STATE(1131)] = 87696, + [SMALL_STATE(1132)] = 87761, + [SMALL_STATE(1133)] = 87821, + [SMALL_STATE(1134)] = 87881, + [SMALL_STATE(1135)] = 87941, + [SMALL_STATE(1136)] = 88001, + [SMALL_STATE(1137)] = 88061, + [SMALL_STATE(1138)] = 88121, + [SMALL_STATE(1139)] = 88181, + [SMALL_STATE(1140)] = 88241, + [SMALL_STATE(1141)] = 88301, + [SMALL_STATE(1142)] = 88361, + [SMALL_STATE(1143)] = 88421, + [SMALL_STATE(1144)] = 88481, + [SMALL_STATE(1145)] = 88541, + [SMALL_STATE(1146)] = 88601, + [SMALL_STATE(1147)] = 88661, + [SMALL_STATE(1148)] = 88727, + [SMALL_STATE(1149)] = 88787, + [SMALL_STATE(1150)] = 88847, + [SMALL_STATE(1151)] = 88907, + [SMALL_STATE(1152)] = 88967, + [SMALL_STATE(1153)] = 89027, + [SMALL_STATE(1154)] = 89087, + [SMALL_STATE(1155)] = 89147, + [SMALL_STATE(1156)] = 89207, + [SMALL_STATE(1157)] = 89267, + [SMALL_STATE(1158)] = 89327, + [SMALL_STATE(1159)] = 89387, + [SMALL_STATE(1160)] = 89447, + [SMALL_STATE(1161)] = 89507, + [SMALL_STATE(1162)] = 89567, + [SMALL_STATE(1163)] = 89627, + [SMALL_STATE(1164)] = 89687, + [SMALL_STATE(1165)] = 89747, + [SMALL_STATE(1166)] = 89807, + [SMALL_STATE(1167)] = 89867, + [SMALL_STATE(1168)] = 89927, + [SMALL_STATE(1169)] = 89987, + [SMALL_STATE(1170)] = 90047, + [SMALL_STATE(1171)] = 90107, + [SMALL_STATE(1172)] = 90167, + [SMALL_STATE(1173)] = 90227, + [SMALL_STATE(1174)] = 90287, + [SMALL_STATE(1175)] = 90347, + [SMALL_STATE(1176)] = 90407, + [SMALL_STATE(1177)] = 90467, + [SMALL_STATE(1178)] = 90527, + [SMALL_STATE(1179)] = 90587, + [SMALL_STATE(1180)] = 90647, + [SMALL_STATE(1181)] = 90707, + [SMALL_STATE(1182)] = 90767, + [SMALL_STATE(1183)] = 90827, + [SMALL_STATE(1184)] = 90887, + [SMALL_STATE(1185)] = 90947, + [SMALL_STATE(1186)] = 91007, + [SMALL_STATE(1187)] = 91067, + [SMALL_STATE(1188)] = 91127, + [SMALL_STATE(1189)] = 91191, + [SMALL_STATE(1190)] = 91255, + [SMALL_STATE(1191)] = 91315, + [SMALL_STATE(1192)] = 91375, + [SMALL_STATE(1193)] = 91435, + [SMALL_STATE(1194)] = 91495, + [SMALL_STATE(1195)] = 91555, + [SMALL_STATE(1196)] = 91615, + [SMALL_STATE(1197)] = 91675, + [SMALL_STATE(1198)] = 91735, + [SMALL_STATE(1199)] = 91795, + [SMALL_STATE(1200)] = 91855, + [SMALL_STATE(1201)] = 91915, + [SMALL_STATE(1202)] = 91975, + [SMALL_STATE(1203)] = 92035, + [SMALL_STATE(1204)] = 92095, + [SMALL_STATE(1205)] = 92155, + [SMALL_STATE(1206)] = 92215, + [SMALL_STATE(1207)] = 92275, + [SMALL_STATE(1208)] = 92335, + [SMALL_STATE(1209)] = 92395, + [SMALL_STATE(1210)] = 92455, + [SMALL_STATE(1211)] = 92515, + [SMALL_STATE(1212)] = 92575, + [SMALL_STATE(1213)] = 92635, + [SMALL_STATE(1214)] = 92695, + [SMALL_STATE(1215)] = 92755, + [SMALL_STATE(1216)] = 92815, + [SMALL_STATE(1217)] = 92875, + [SMALL_STATE(1218)] = 92935, + [SMALL_STATE(1219)] = 92999, + [SMALL_STATE(1220)] = 93059, + [SMALL_STATE(1221)] = 93119, + [SMALL_STATE(1222)] = 93179, + [SMALL_STATE(1223)] = 93239, + [SMALL_STATE(1224)] = 93299, + [SMALL_STATE(1225)] = 93359, + [SMALL_STATE(1226)] = 93419, + [SMALL_STATE(1227)] = 93479, + [SMALL_STATE(1228)] = 93539, + [SMALL_STATE(1229)] = 93599, + [SMALL_STATE(1230)] = 93659, + [SMALL_STATE(1231)] = 93719, + [SMALL_STATE(1232)] = 93779, + [SMALL_STATE(1233)] = 93839, + [SMALL_STATE(1234)] = 93899, + [SMALL_STATE(1235)] = 93959, + [SMALL_STATE(1236)] = 94019, + [SMALL_STATE(1237)] = 94079, + [SMALL_STATE(1238)] = 94139, + [SMALL_STATE(1239)] = 94199, + [SMALL_STATE(1240)] = 94259, + [SMALL_STATE(1241)] = 94319, + [SMALL_STATE(1242)] = 94379, + [SMALL_STATE(1243)] = 94439, + [SMALL_STATE(1244)] = 94499, + [SMALL_STATE(1245)] = 94559, + [SMALL_STATE(1246)] = 94619, + [SMALL_STATE(1247)] = 94679, + [SMALL_STATE(1248)] = 94739, + [SMALL_STATE(1249)] = 94799, + [SMALL_STATE(1250)] = 94859, + [SMALL_STATE(1251)] = 94919, + [SMALL_STATE(1252)] = 94979, + [SMALL_STATE(1253)] = 95039, + [SMALL_STATE(1254)] = 95099, + [SMALL_STATE(1255)] = 95159, + [SMALL_STATE(1256)] = 95238, + [SMALL_STATE(1257)] = 95317, + [SMALL_STATE(1258)] = 95396, + [SMALL_STATE(1259)] = 95475, + [SMALL_STATE(1260)] = 95554, + [SMALL_STATE(1261)] = 95633, + [SMALL_STATE(1262)] = 95712, + [SMALL_STATE(1263)] = 95791, + [SMALL_STATE(1264)] = 95870, + [SMALL_STATE(1265)] = 95949, + [SMALL_STATE(1266)] = 96028, + [SMALL_STATE(1267)] = 96107, + [SMALL_STATE(1268)] = 96186, + [SMALL_STATE(1269)] = 96265, + [SMALL_STATE(1270)] = 96344, + [SMALL_STATE(1271)] = 96423, + [SMALL_STATE(1272)] = 96502, + [SMALL_STATE(1273)] = 96581, + [SMALL_STATE(1274)] = 96660, + [SMALL_STATE(1275)] = 96739, + [SMALL_STATE(1276)] = 96818, + [SMALL_STATE(1277)] = 96897, + [SMALL_STATE(1278)] = 96976, + [SMALL_STATE(1279)] = 97055, + [SMALL_STATE(1280)] = 97134, + [SMALL_STATE(1281)] = 97213, + [SMALL_STATE(1282)] = 97292, + [SMALL_STATE(1283)] = 97371, + [SMALL_STATE(1284)] = 97431, + [SMALL_STATE(1285)] = 97488, + [SMALL_STATE(1286)] = 97593, + [SMALL_STATE(1287)] = 97698, + [SMALL_STATE(1288)] = 97803, + [SMALL_STATE(1289)] = 97908, + [SMALL_STATE(1290)] = 98013, + [SMALL_STATE(1291)] = 98118, + [SMALL_STATE(1292)] = 98223, + [SMALL_STATE(1293)] = 98328, + [SMALL_STATE(1294)] = 98433, + [SMALL_STATE(1295)] = 98538, + [SMALL_STATE(1296)] = 98643, + [SMALL_STATE(1297)] = 98748, + [SMALL_STATE(1298)] = 98853, + [SMALL_STATE(1299)] = 98958, + [SMALL_STATE(1300)] = 99063, + [SMALL_STATE(1301)] = 99168, + [SMALL_STATE(1302)] = 99273, + [SMALL_STATE(1303)] = 99378, + [SMALL_STATE(1304)] = 99483, + [SMALL_STATE(1305)] = 99588, + [SMALL_STATE(1306)] = 99693, + [SMALL_STATE(1307)] = 99798, + [SMALL_STATE(1308)] = 99903, + [SMALL_STATE(1309)] = 100008, + [SMALL_STATE(1310)] = 100113, + [SMALL_STATE(1311)] = 100218, + [SMALL_STATE(1312)] = 100323, + [SMALL_STATE(1313)] = 100428, + [SMALL_STATE(1314)] = 100533, + [SMALL_STATE(1315)] = 100638, + [SMALL_STATE(1316)] = 100743, + [SMALL_STATE(1317)] = 100848, + [SMALL_STATE(1318)] = 100953, + [SMALL_STATE(1319)] = 101058, + [SMALL_STATE(1320)] = 101163, + [SMALL_STATE(1321)] = 101268, + [SMALL_STATE(1322)] = 101373, + [SMALL_STATE(1323)] = 101478, + [SMALL_STATE(1324)] = 101583, + [SMALL_STATE(1325)] = 101688, + [SMALL_STATE(1326)] = 101793, + [SMALL_STATE(1327)] = 101898, + [SMALL_STATE(1328)] = 102003, + [SMALL_STATE(1329)] = 102108, + [SMALL_STATE(1330)] = 102213, + [SMALL_STATE(1331)] = 102318, + [SMALL_STATE(1332)] = 102423, + [SMALL_STATE(1333)] = 102528, + [SMALL_STATE(1334)] = 102633, + [SMALL_STATE(1335)] = 102738, + [SMALL_STATE(1336)] = 102843, + [SMALL_STATE(1337)] = 102948, + [SMALL_STATE(1338)] = 103053, + [SMALL_STATE(1339)] = 103158, + [SMALL_STATE(1340)] = 103263, + [SMALL_STATE(1341)] = 103368, + [SMALL_STATE(1342)] = 103473, + [SMALL_STATE(1343)] = 103578, + [SMALL_STATE(1344)] = 103683, + [SMALL_STATE(1345)] = 103788, + [SMALL_STATE(1346)] = 103893, + [SMALL_STATE(1347)] = 103998, + [SMALL_STATE(1348)] = 104103, + [SMALL_STATE(1349)] = 104208, + [SMALL_STATE(1350)] = 104313, + [SMALL_STATE(1351)] = 104418, + [SMALL_STATE(1352)] = 104523, + [SMALL_STATE(1353)] = 104628, + [SMALL_STATE(1354)] = 104733, + [SMALL_STATE(1355)] = 104838, + [SMALL_STATE(1356)] = 104943, + [SMALL_STATE(1357)] = 105048, + [SMALL_STATE(1358)] = 105153, + [SMALL_STATE(1359)] = 105258, + [SMALL_STATE(1360)] = 105363, + [SMALL_STATE(1361)] = 105468, + [SMALL_STATE(1362)] = 105573, + [SMALL_STATE(1363)] = 105678, + [SMALL_STATE(1364)] = 105783, + [SMALL_STATE(1365)] = 105888, + [SMALL_STATE(1366)] = 105993, + [SMALL_STATE(1367)] = 106050, + [SMALL_STATE(1368)] = 106107, + [SMALL_STATE(1369)] = 106164, + [SMALL_STATE(1370)] = 106221, + [SMALL_STATE(1371)] = 106278, + [SMALL_STATE(1372)] = 106335, + [SMALL_STATE(1373)] = 106392, + [SMALL_STATE(1374)] = 106449, + [SMALL_STATE(1375)] = 106506, + [SMALL_STATE(1376)] = 106563, + [SMALL_STATE(1377)] = 106620, + [SMALL_STATE(1378)] = 106677, + [SMALL_STATE(1379)] = 106734, + [SMALL_STATE(1380)] = 106791, + [SMALL_STATE(1381)] = 106848, + [SMALL_STATE(1382)] = 106905, + [SMALL_STATE(1383)] = 106962, + [SMALL_STATE(1384)] = 107019, + [SMALL_STATE(1385)] = 107076, + [SMALL_STATE(1386)] = 107133, + [SMALL_STATE(1387)] = 107190, + [SMALL_STATE(1388)] = 107247, + [SMALL_STATE(1389)] = 107304, + [SMALL_STATE(1390)] = 107361, + [SMALL_STATE(1391)] = 107418, + [SMALL_STATE(1392)] = 107475, + [SMALL_STATE(1393)] = 107532, + [SMALL_STATE(1394)] = 107589, + [SMALL_STATE(1395)] = 107646, + [SMALL_STATE(1396)] = 107703, + [SMALL_STATE(1397)] = 107760, + [SMALL_STATE(1398)] = 107817, + [SMALL_STATE(1399)] = 107874, + [SMALL_STATE(1400)] = 107931, + [SMALL_STATE(1401)] = 107988, + [SMALL_STATE(1402)] = 108045, + [SMALL_STATE(1403)] = 108102, + [SMALL_STATE(1404)] = 108159, + [SMALL_STATE(1405)] = 108216, + [SMALL_STATE(1406)] = 108273, + [SMALL_STATE(1407)] = 108330, + [SMALL_STATE(1408)] = 108387, + [SMALL_STATE(1409)] = 108444, + [SMALL_STATE(1410)] = 108501, + [SMALL_STATE(1411)] = 108558, + [SMALL_STATE(1412)] = 108615, + [SMALL_STATE(1413)] = 108672, + [SMALL_STATE(1414)] = 108729, + [SMALL_STATE(1415)] = 108786, + [SMALL_STATE(1416)] = 108843, + [SMALL_STATE(1417)] = 108900, + [SMALL_STATE(1418)] = 108957, + [SMALL_STATE(1419)] = 109014, + [SMALL_STATE(1420)] = 109071, + [SMALL_STATE(1421)] = 109128, + [SMALL_STATE(1422)] = 109185, + [SMALL_STATE(1423)] = 109242, + [SMALL_STATE(1424)] = 109299, + [SMALL_STATE(1425)] = 109356, + [SMALL_STATE(1426)] = 109413, + [SMALL_STATE(1427)] = 109470, + [SMALL_STATE(1428)] = 109527, + [SMALL_STATE(1429)] = 109584, + [SMALL_STATE(1430)] = 109641, + [SMALL_STATE(1431)] = 109698, + [SMALL_STATE(1432)] = 109755, + [SMALL_STATE(1433)] = 109812, + [SMALL_STATE(1434)] = 109869, + [SMALL_STATE(1435)] = 109926, + [SMALL_STATE(1436)] = 109983, + [SMALL_STATE(1437)] = 110040, + [SMALL_STATE(1438)] = 110097, + [SMALL_STATE(1439)] = 110154, + [SMALL_STATE(1440)] = 110211, + [SMALL_STATE(1441)] = 110268, + [SMALL_STATE(1442)] = 110325, + [SMALL_STATE(1443)] = 110382, + [SMALL_STATE(1444)] = 110439, + [SMALL_STATE(1445)] = 110496, + [SMALL_STATE(1446)] = 110553, + [SMALL_STATE(1447)] = 110610, + [SMALL_STATE(1448)] = 110667, + [SMALL_STATE(1449)] = 110724, + [SMALL_STATE(1450)] = 110781, + [SMALL_STATE(1451)] = 110838, + [SMALL_STATE(1452)] = 110895, + [SMALL_STATE(1453)] = 110952, + [SMALL_STATE(1454)] = 111009, + [SMALL_STATE(1455)] = 111066, + [SMALL_STATE(1456)] = 111123, + [SMALL_STATE(1457)] = 111180, + [SMALL_STATE(1458)] = 111237, + [SMALL_STATE(1459)] = 111294, + [SMALL_STATE(1460)] = 111351, + [SMALL_STATE(1461)] = 111408, + [SMALL_STATE(1462)] = 111465, + [SMALL_STATE(1463)] = 111522, + [SMALL_STATE(1464)] = 111579, + [SMALL_STATE(1465)] = 111636, + [SMALL_STATE(1466)] = 111693, + [SMALL_STATE(1467)] = 111750, + [SMALL_STATE(1468)] = 111807, + [SMALL_STATE(1469)] = 111864, + [SMALL_STATE(1470)] = 111921, + [SMALL_STATE(1471)] = 111978, + [SMALL_STATE(1472)] = 112035, + [SMALL_STATE(1473)] = 112092, + [SMALL_STATE(1474)] = 112149, + [SMALL_STATE(1475)] = 112206, + [SMALL_STATE(1476)] = 112263, + [SMALL_STATE(1477)] = 112320, + [SMALL_STATE(1478)] = 112377, + [SMALL_STATE(1479)] = 112438, + [SMALL_STATE(1480)] = 112495, + [SMALL_STATE(1481)] = 112552, + [SMALL_STATE(1482)] = 112609, + [SMALL_STATE(1483)] = 112666, + [SMALL_STATE(1484)] = 112723, + [SMALL_STATE(1485)] = 112784, + [SMALL_STATE(1486)] = 112845, + [SMALL_STATE(1487)] = 112902, + [SMALL_STATE(1488)] = 112958, + [SMALL_STATE(1489)] = 113016, + [SMALL_STATE(1490)] = 113074, + [SMALL_STATE(1491)] = 113132, + [SMALL_STATE(1492)] = 113186, + [SMALL_STATE(1493)] = 113239, + [SMALL_STATE(1494)] = 113292, + [SMALL_STATE(1495)] = 113345, + [SMALL_STATE(1496)] = 113398, + [SMALL_STATE(1497)] = 113451, + [SMALL_STATE(1498)] = 113504, + [SMALL_STATE(1499)] = 113557, + [SMALL_STATE(1500)] = 113610, + [SMALL_STATE(1501)] = 113663, + [SMALL_STATE(1502)] = 113716, + [SMALL_STATE(1503)] = 113769, + [SMALL_STATE(1504)] = 113822, + [SMALL_STATE(1505)] = 113875, + [SMALL_STATE(1506)] = 113928, + [SMALL_STATE(1507)] = 113981, + [SMALL_STATE(1508)] = 114034, + [SMALL_STATE(1509)] = 114087, + [SMALL_STATE(1510)] = 114140, + [SMALL_STATE(1511)] = 114193, + [SMALL_STATE(1512)] = 114246, + [SMALL_STATE(1513)] = 114299, + [SMALL_STATE(1514)] = 114352, + [SMALL_STATE(1515)] = 114405, + [SMALL_STATE(1516)] = 114458, + [SMALL_STATE(1517)] = 114511, + [SMALL_STATE(1518)] = 114564, + [SMALL_STATE(1519)] = 114617, + [SMALL_STATE(1520)] = 114670, + [SMALL_STATE(1521)] = 114723, + [SMALL_STATE(1522)] = 114776, + [SMALL_STATE(1523)] = 114829, + [SMALL_STATE(1524)] = 114882, + [SMALL_STATE(1525)] = 114935, + [SMALL_STATE(1526)] = 114988, + [SMALL_STATE(1527)] = 115041, + [SMALL_STATE(1528)] = 115094, + [SMALL_STATE(1529)] = 115147, + [SMALL_STATE(1530)] = 115200, + [SMALL_STATE(1531)] = 115253, + [SMALL_STATE(1532)] = 115306, + [SMALL_STATE(1533)] = 115359, + [SMALL_STATE(1534)] = 115412, + [SMALL_STATE(1535)] = 115465, + [SMALL_STATE(1536)] = 115518, + [SMALL_STATE(1537)] = 115571, + [SMALL_STATE(1538)] = 115624, + [SMALL_STATE(1539)] = 115677, + [SMALL_STATE(1540)] = 115730, + [SMALL_STATE(1541)] = 115783, + [SMALL_STATE(1542)] = 115836, + [SMALL_STATE(1543)] = 115889, + [SMALL_STATE(1544)] = 115942, + [SMALL_STATE(1545)] = 115995, + [SMALL_STATE(1546)] = 116048, + [SMALL_STATE(1547)] = 116101, + [SMALL_STATE(1548)] = 116154, + [SMALL_STATE(1549)] = 116207, + [SMALL_STATE(1550)] = 116260, + [SMALL_STATE(1551)] = 116313, + [SMALL_STATE(1552)] = 116366, + [SMALL_STATE(1553)] = 116419, + [SMALL_STATE(1554)] = 116472, + [SMALL_STATE(1555)] = 116525, + [SMALL_STATE(1556)] = 116578, + [SMALL_STATE(1557)] = 116631, + [SMALL_STATE(1558)] = 116684, + [SMALL_STATE(1559)] = 116737, + [SMALL_STATE(1560)] = 116790, + [SMALL_STATE(1561)] = 116843, + [SMALL_STATE(1562)] = 116896, + [SMALL_STATE(1563)] = 116949, + [SMALL_STATE(1564)] = 117002, + [SMALL_STATE(1565)] = 117055, + [SMALL_STATE(1566)] = 117108, + [SMALL_STATE(1567)] = 117161, + [SMALL_STATE(1568)] = 117214, + [SMALL_STATE(1569)] = 117267, + [SMALL_STATE(1570)] = 117320, + [SMALL_STATE(1571)] = 117373, + [SMALL_STATE(1572)] = 117426, + [SMALL_STATE(1573)] = 117479, + [SMALL_STATE(1574)] = 117532, + [SMALL_STATE(1575)] = 117585, + [SMALL_STATE(1576)] = 117638, + [SMALL_STATE(1577)] = 117691, + [SMALL_STATE(1578)] = 117744, + [SMALL_STATE(1579)] = 117797, + [SMALL_STATE(1580)] = 117850, + [SMALL_STATE(1581)] = 117903, + [SMALL_STATE(1582)] = 117956, + [SMALL_STATE(1583)] = 118009, + [SMALL_STATE(1584)] = 118062, + [SMALL_STATE(1585)] = 118115, + [SMALL_STATE(1586)] = 118168, + [SMALL_STATE(1587)] = 118221, + [SMALL_STATE(1588)] = 118274, + [SMALL_STATE(1589)] = 118327, + [SMALL_STATE(1590)] = 118380, + [SMALL_STATE(1591)] = 118433, + [SMALL_STATE(1592)] = 118486, + [SMALL_STATE(1593)] = 118539, + [SMALL_STATE(1594)] = 118592, + [SMALL_STATE(1595)] = 118645, + [SMALL_STATE(1596)] = 118698, + [SMALL_STATE(1597)] = 118751, + [SMALL_STATE(1598)] = 118804, + [SMALL_STATE(1599)] = 118857, + [SMALL_STATE(1600)] = 118910, + [SMALL_STATE(1601)] = 118963, + [SMALL_STATE(1602)] = 119016, + [SMALL_STATE(1603)] = 119069, + [SMALL_STATE(1604)] = 119122, + [SMALL_STATE(1605)] = 119175, + [SMALL_STATE(1606)] = 119228, + [SMALL_STATE(1607)] = 119281, + [SMALL_STATE(1608)] = 119334, + [SMALL_STATE(1609)] = 119387, + [SMALL_STATE(1610)] = 119440, + [SMALL_STATE(1611)] = 119493, + [SMALL_STATE(1612)] = 119546, + [SMALL_STATE(1613)] = 119599, + [SMALL_STATE(1614)] = 119660, + [SMALL_STATE(1615)] = 119721, + [SMALL_STATE(1616)] = 119782, + [SMALL_STATE(1617)] = 119843, + [SMALL_STATE(1618)] = 119904, + [SMALL_STATE(1619)] = 119965, + [SMALL_STATE(1620)] = 120026, + [SMALL_STATE(1621)] = 120087, + [SMALL_STATE(1622)] = 120148, + [SMALL_STATE(1623)] = 120209, + [SMALL_STATE(1624)] = 120259, + [SMALL_STATE(1625)] = 120306, + [SMALL_STATE(1626)] = 120353, + [SMALL_STATE(1627)] = 120400, + [SMALL_STATE(1628)] = 120447, + [SMALL_STATE(1629)] = 120494, + [SMALL_STATE(1630)] = 120541, + [SMALL_STATE(1631)] = 120588, + [SMALL_STATE(1632)] = 120635, + [SMALL_STATE(1633)] = 120682, + [SMALL_STATE(1634)] = 120729, + [SMALL_STATE(1635)] = 120776, + [SMALL_STATE(1636)] = 120823, + [SMALL_STATE(1637)] = 120870, + [SMALL_STATE(1638)] = 120917, + [SMALL_STATE(1639)] = 120964, + [SMALL_STATE(1640)] = 121011, + [SMALL_STATE(1641)] = 121058, + [SMALL_STATE(1642)] = 121105, + [SMALL_STATE(1643)] = 121152, + [SMALL_STATE(1644)] = 121199, + [SMALL_STATE(1645)] = 121246, + [SMALL_STATE(1646)] = 121293, + [SMALL_STATE(1647)] = 121340, + [SMALL_STATE(1648)] = 121387, + [SMALL_STATE(1649)] = 121434, + [SMALL_STATE(1650)] = 121481, + [SMALL_STATE(1651)] = 121528, + [SMALL_STATE(1652)] = 121575, + [SMALL_STATE(1653)] = 121622, + [SMALL_STATE(1654)] = 121669, + [SMALL_STATE(1655)] = 121716, + [SMALL_STATE(1656)] = 121763, + [SMALL_STATE(1657)] = 121810, + [SMALL_STATE(1658)] = 121857, + [SMALL_STATE(1659)] = 121904, + [SMALL_STATE(1660)] = 121951, + [SMALL_STATE(1661)] = 121998, + [SMALL_STATE(1662)] = 122045, + [SMALL_STATE(1663)] = 122092, + [SMALL_STATE(1664)] = 122139, + [SMALL_STATE(1665)] = 122186, + [SMALL_STATE(1666)] = 122233, + [SMALL_STATE(1667)] = 122280, + [SMALL_STATE(1668)] = 122327, + [SMALL_STATE(1669)] = 122374, + [SMALL_STATE(1670)] = 122421, + [SMALL_STATE(1671)] = 122468, + [SMALL_STATE(1672)] = 122515, + [SMALL_STATE(1673)] = 122562, + [SMALL_STATE(1674)] = 122609, + [SMALL_STATE(1675)] = 122660, + [SMALL_STATE(1676)] = 122711, + [SMALL_STATE(1677)] = 122758, + [SMALL_STATE(1678)] = 122805, + [SMALL_STATE(1679)] = 122852, + [SMALL_STATE(1680)] = 122899, + [SMALL_STATE(1681)] = 122946, + [SMALL_STATE(1682)] = 122993, + [SMALL_STATE(1683)] = 123044, + [SMALL_STATE(1684)] = 123091, + [SMALL_STATE(1685)] = 123138, + [SMALL_STATE(1686)] = 123185, + [SMALL_STATE(1687)] = 123232, + [SMALL_STATE(1688)] = 123279, + [SMALL_STATE(1689)] = 123326, + [SMALL_STATE(1690)] = 123373, + [SMALL_STATE(1691)] = 123420, + [SMALL_STATE(1692)] = 123467, + [SMALL_STATE(1693)] = 123514, + [SMALL_STATE(1694)] = 123561, + [SMALL_STATE(1695)] = 123608, + [SMALL_STATE(1696)] = 123655, + [SMALL_STATE(1697)] = 123702, + [SMALL_STATE(1698)] = 123749, + [SMALL_STATE(1699)] = 123796, + [SMALL_STATE(1700)] = 123843, + [SMALL_STATE(1701)] = 123890, + [SMALL_STATE(1702)] = 123937, + [SMALL_STATE(1703)] = 123984, + [SMALL_STATE(1704)] = 124031, + [SMALL_STATE(1705)] = 124078, + [SMALL_STATE(1706)] = 124125, + [SMALL_STATE(1707)] = 124172, + [SMALL_STATE(1708)] = 124219, + [SMALL_STATE(1709)] = 124266, + [SMALL_STATE(1710)] = 124313, + [SMALL_STATE(1711)] = 124360, + [SMALL_STATE(1712)] = 124407, + [SMALL_STATE(1713)] = 124454, + [SMALL_STATE(1714)] = 124501, + [SMALL_STATE(1715)] = 124548, + [SMALL_STATE(1716)] = 124595, + [SMALL_STATE(1717)] = 124642, + [SMALL_STATE(1718)] = 124689, + [SMALL_STATE(1719)] = 124736, + [SMALL_STATE(1720)] = 124783, + [SMALL_STATE(1721)] = 124830, + [SMALL_STATE(1722)] = 124877, + [SMALL_STATE(1723)] = 124924, + [SMALL_STATE(1724)] = 124971, + [SMALL_STATE(1725)] = 125018, + [SMALL_STATE(1726)] = 125065, + [SMALL_STATE(1727)] = 125112, + [SMALL_STATE(1728)] = 125159, + [SMALL_STATE(1729)] = 125206, + [SMALL_STATE(1730)] = 125253, + [SMALL_STATE(1731)] = 125300, + [SMALL_STATE(1732)] = 125347, + [SMALL_STATE(1733)] = 125394, + [SMALL_STATE(1734)] = 125441, + [SMALL_STATE(1735)] = 125488, + [SMALL_STATE(1736)] = 125535, + [SMALL_STATE(1737)] = 125582, + [SMALL_STATE(1738)] = 125629, + [SMALL_STATE(1739)] = 125676, + [SMALL_STATE(1740)] = 125723, + [SMALL_STATE(1741)] = 125770, + [SMALL_STATE(1742)] = 125817, + [SMALL_STATE(1743)] = 125864, + [SMALL_STATE(1744)] = 125911, + [SMALL_STATE(1745)] = 125958, + [SMALL_STATE(1746)] = 126005, + [SMALL_STATE(1747)] = 126077, + [SMALL_STATE(1748)] = 126149, + [SMALL_STATE(1749)] = 126221, + [SMALL_STATE(1750)] = 126293, + [SMALL_STATE(1751)] = 126365, + [SMALL_STATE(1752)] = 126437, + [SMALL_STATE(1753)] = 126509, + [SMALL_STATE(1754)] = 126581, + [SMALL_STATE(1755)] = 126653, + [SMALL_STATE(1756)] = 126725, + [SMALL_STATE(1757)] = 126797, + [SMALL_STATE(1758)] = 126869, + [SMALL_STATE(1759)] = 126941, + [SMALL_STATE(1760)] = 127013, + [SMALL_STATE(1761)] = 127085, + [SMALL_STATE(1762)] = 127157, + [SMALL_STATE(1763)] = 127229, + [SMALL_STATE(1764)] = 127301, + [SMALL_STATE(1765)] = 127373, + [SMALL_STATE(1766)] = 127445, + [SMALL_STATE(1767)] = 127514, + [SMALL_STATE(1768)] = 127558, + [SMALL_STATE(1769)] = 127606, + [SMALL_STATE(1770)] = 127650, + [SMALL_STATE(1771)] = 127694, + [SMALL_STATE(1772)] = 127738, + [SMALL_STATE(1773)] = 127782, + [SMALL_STATE(1774)] = 127826, + [SMALL_STATE(1775)] = 127870, + [SMALL_STATE(1776)] = 127914, + [SMALL_STATE(1777)] = 127958, + [SMALL_STATE(1778)] = 128002, + [SMALL_STATE(1779)] = 128046, + [SMALL_STATE(1780)] = 128090, + [SMALL_STATE(1781)] = 128134, + [SMALL_STATE(1782)] = 128178, + [SMALL_STATE(1783)] = 128222, + [SMALL_STATE(1784)] = 128266, + [SMALL_STATE(1785)] = 128310, + [SMALL_STATE(1786)] = 128354, + [SMALL_STATE(1787)] = 128398, + [SMALL_STATE(1788)] = 128442, + [SMALL_STATE(1789)] = 128486, + [SMALL_STATE(1790)] = 128530, + [SMALL_STATE(1791)] = 128574, + [SMALL_STATE(1792)] = 128618, + [SMALL_STATE(1793)] = 128662, + [SMALL_STATE(1794)] = 128706, + [SMALL_STATE(1795)] = 128750, + [SMALL_STATE(1796)] = 128794, + [SMALL_STATE(1797)] = 128838, + [SMALL_STATE(1798)] = 128882, + [SMALL_STATE(1799)] = 128926, + [SMALL_STATE(1800)] = 128970, + [SMALL_STATE(1801)] = 129014, + [SMALL_STATE(1802)] = 129058, + [SMALL_STATE(1803)] = 129102, + [SMALL_STATE(1804)] = 129146, + [SMALL_STATE(1805)] = 129190, + [SMALL_STATE(1806)] = 129234, + [SMALL_STATE(1807)] = 129278, + [SMALL_STATE(1808)] = 129322, + [SMALL_STATE(1809)] = 129366, + [SMALL_STATE(1810)] = 129410, + [SMALL_STATE(1811)] = 129454, + [SMALL_STATE(1812)] = 129498, + [SMALL_STATE(1813)] = 129542, + [SMALL_STATE(1814)] = 129586, + [SMALL_STATE(1815)] = 129630, + [SMALL_STATE(1816)] = 129674, + [SMALL_STATE(1817)] = 129718, + [SMALL_STATE(1818)] = 129762, + [SMALL_STATE(1819)] = 129806, + [SMALL_STATE(1820)] = 129850, + [SMALL_STATE(1821)] = 129894, + [SMALL_STATE(1822)] = 129938, + [SMALL_STATE(1823)] = 129982, + [SMALL_STATE(1824)] = 130026, + [SMALL_STATE(1825)] = 130070, + [SMALL_STATE(1826)] = 130114, + [SMALL_STATE(1827)] = 130158, + [SMALL_STATE(1828)] = 130202, + [SMALL_STATE(1829)] = 130246, + [SMALL_STATE(1830)] = 130290, + [SMALL_STATE(1831)] = 130334, + [SMALL_STATE(1832)] = 130378, + [SMALL_STATE(1833)] = 130422, + [SMALL_STATE(1834)] = 130466, + [SMALL_STATE(1835)] = 130510, + [SMALL_STATE(1836)] = 130554, + [SMALL_STATE(1837)] = 130598, + [SMALL_STATE(1838)] = 130642, + [SMALL_STATE(1839)] = 130686, + [SMALL_STATE(1840)] = 130730, + [SMALL_STATE(1841)] = 130774, + [SMALL_STATE(1842)] = 130818, + [SMALL_STATE(1843)] = 130862, + [SMALL_STATE(1844)] = 130906, + [SMALL_STATE(1845)] = 130950, + [SMALL_STATE(1846)] = 130994, + [SMALL_STATE(1847)] = 131038, + [SMALL_STATE(1848)] = 131082, + [SMALL_STATE(1849)] = 131126, + [SMALL_STATE(1850)] = 131170, + [SMALL_STATE(1851)] = 131214, + [SMALL_STATE(1852)] = 131258, + [SMALL_STATE(1853)] = 131302, + [SMALL_STATE(1854)] = 131346, + [SMALL_STATE(1855)] = 131390, + [SMALL_STATE(1856)] = 131434, + [SMALL_STATE(1857)] = 131478, + [SMALL_STATE(1858)] = 131522, + [SMALL_STATE(1859)] = 131566, + [SMALL_STATE(1860)] = 131610, + [SMALL_STATE(1861)] = 131654, + [SMALL_STATE(1862)] = 131698, + [SMALL_STATE(1863)] = 131742, + [SMALL_STATE(1864)] = 131786, + [SMALL_STATE(1865)] = 131830, + [SMALL_STATE(1866)] = 131874, + [SMALL_STATE(1867)] = 131918, + [SMALL_STATE(1868)] = 131962, + [SMALL_STATE(1869)] = 132006, + [SMALL_STATE(1870)] = 132050, + [SMALL_STATE(1871)] = 132094, + [SMALL_STATE(1872)] = 132138, + [SMALL_STATE(1873)] = 132182, + [SMALL_STATE(1874)] = 132228, + [SMALL_STATE(1875)] = 132272, + [SMALL_STATE(1876)] = 132316, + [SMALL_STATE(1877)] = 132360, + [SMALL_STATE(1878)] = 132404, + [SMALL_STATE(1879)] = 132452, + [SMALL_STATE(1880)] = 132496, + [SMALL_STATE(1881)] = 132540, + [SMALL_STATE(1882)] = 132584, + [SMALL_STATE(1883)] = 132628, + [SMALL_STATE(1884)] = 132672, + [SMALL_STATE(1885)] = 132716, + [SMALL_STATE(1886)] = 132760, + [SMALL_STATE(1887)] = 132804, + [SMALL_STATE(1888)] = 132848, + [SMALL_STATE(1889)] = 132896, + [SMALL_STATE(1890)] = 132940, + [SMALL_STATE(1891)] = 132983, + [SMALL_STATE(1892)] = 133026, + [SMALL_STATE(1893)] = 133069, + [SMALL_STATE(1894)] = 133112, + [SMALL_STATE(1895)] = 133155, + [SMALL_STATE(1896)] = 133198, + [SMALL_STATE(1897)] = 133241, + [SMALL_STATE(1898)] = 133284, + [SMALL_STATE(1899)] = 133327, + [SMALL_STATE(1900)] = 133370, + [SMALL_STATE(1901)] = 133413, + [SMALL_STATE(1902)] = 133456, + [SMALL_STATE(1903)] = 133499, + [SMALL_STATE(1904)] = 133542, + [SMALL_STATE(1905)] = 133585, + [SMALL_STATE(1906)] = 133628, + [SMALL_STATE(1907)] = 133671, + [SMALL_STATE(1908)] = 133714, + [SMALL_STATE(1909)] = 133757, + [SMALL_STATE(1910)] = 133800, + [SMALL_STATE(1911)] = 133843, + [SMALL_STATE(1912)] = 133886, + [SMALL_STATE(1913)] = 133929, + [SMALL_STATE(1914)] = 133972, + [SMALL_STATE(1915)] = 134015, + [SMALL_STATE(1916)] = 134058, + [SMALL_STATE(1917)] = 134101, + [SMALL_STATE(1918)] = 134144, + [SMALL_STATE(1919)] = 134187, + [SMALL_STATE(1920)] = 134230, + [SMALL_STATE(1921)] = 134273, + [SMALL_STATE(1922)] = 134316, + [SMALL_STATE(1923)] = 134359, + [SMALL_STATE(1924)] = 134402, + [SMALL_STATE(1925)] = 134445, + [SMALL_STATE(1926)] = 134488, + [SMALL_STATE(1927)] = 134531, + [SMALL_STATE(1928)] = 134574, + [SMALL_STATE(1929)] = 134617, + [SMALL_STATE(1930)] = 134660, + [SMALL_STATE(1931)] = 134703, + [SMALL_STATE(1932)] = 134746, + [SMALL_STATE(1933)] = 134789, + [SMALL_STATE(1934)] = 134832, + [SMALL_STATE(1935)] = 134875, + [SMALL_STATE(1936)] = 134918, + [SMALL_STATE(1937)] = 134961, + [SMALL_STATE(1938)] = 135004, + [SMALL_STATE(1939)] = 135047, + [SMALL_STATE(1940)] = 135090, + [SMALL_STATE(1941)] = 135133, + [SMALL_STATE(1942)] = 135176, + [SMALL_STATE(1943)] = 135219, + [SMALL_STATE(1944)] = 135262, + [SMALL_STATE(1945)] = 135305, + [SMALL_STATE(1946)] = 135348, + [SMALL_STATE(1947)] = 135391, + [SMALL_STATE(1948)] = 135434, + [SMALL_STATE(1949)] = 135477, + [SMALL_STATE(1950)] = 135520, + [SMALL_STATE(1951)] = 135563, + [SMALL_STATE(1952)] = 135606, + [SMALL_STATE(1953)] = 135649, + [SMALL_STATE(1954)] = 135692, + [SMALL_STATE(1955)] = 135735, + [SMALL_STATE(1956)] = 135778, + [SMALL_STATE(1957)] = 135821, + [SMALL_STATE(1958)] = 135864, + [SMALL_STATE(1959)] = 135907, + [SMALL_STATE(1960)] = 135950, + [SMALL_STATE(1961)] = 135993, + [SMALL_STATE(1962)] = 136036, + [SMALL_STATE(1963)] = 136079, + [SMALL_STATE(1964)] = 136122, + [SMALL_STATE(1965)] = 136165, + [SMALL_STATE(1966)] = 136208, + [SMALL_STATE(1967)] = 136251, + [SMALL_STATE(1968)] = 136300, + [SMALL_STATE(1969)] = 136343, + [SMALL_STATE(1970)] = 136386, + [SMALL_STATE(1971)] = 136429, + [SMALL_STATE(1972)] = 136472, + [SMALL_STATE(1973)] = 136515, + [SMALL_STATE(1974)] = 136558, + [SMALL_STATE(1975)] = 136601, + [SMALL_STATE(1976)] = 136644, + [SMALL_STATE(1977)] = 136687, + [SMALL_STATE(1978)] = 136730, + [SMALL_STATE(1979)] = 136772, + [SMALL_STATE(1980)] = 136813, + [SMALL_STATE(1981)] = 136858, + [SMALL_STATE(1982)] = 136899, + [SMALL_STATE(1983)] = 136940, + [SMALL_STATE(1984)] = 136981, + [SMALL_STATE(1985)] = 137026, + [SMALL_STATE(1986)] = 137067, + [SMALL_STATE(1987)] = 137108, + [SMALL_STATE(1988)] = 137149, + [SMALL_STATE(1989)] = 137194, + [SMALL_STATE(1990)] = 137239, + [SMALL_STATE(1991)] = 137284, + [SMALL_STATE(1992)] = 137325, + [SMALL_STATE(1993)] = 137366, + [SMALL_STATE(1994)] = 137407, + [SMALL_STATE(1995)] = 137452, + [SMALL_STATE(1996)] = 137493, + [SMALL_STATE(1997)] = 137534, + [SMALL_STATE(1998)] = 137579, + [SMALL_STATE(1999)] = 137620, + [SMALL_STATE(2000)] = 137661, + [SMALL_STATE(2001)] = 137702, + [SMALL_STATE(2002)] = 137743, + [SMALL_STATE(2003)] = 137784, + [SMALL_STATE(2004)] = 137825, + [SMALL_STATE(2005)] = 137866, + [SMALL_STATE(2006)] = 137907, + [SMALL_STATE(2007)] = 137966, + [SMALL_STATE(2008)] = 138007, + [SMALL_STATE(2009)] = 138048, + [SMALL_STATE(2010)] = 138089, + [SMALL_STATE(2011)] = 138130, + [SMALL_STATE(2012)] = 138175, + [SMALL_STATE(2013)] = 138220, + [SMALL_STATE(2014)] = 138261, + [SMALL_STATE(2015)] = 138302, + [SMALL_STATE(2016)] = 138343, + [SMALL_STATE(2017)] = 138384, + [SMALL_STATE(2018)] = 138429, + [SMALL_STATE(2019)] = 138470, + [SMALL_STATE(2020)] = 138511, + [SMALL_STATE(2021)] = 138552, + [SMALL_STATE(2022)] = 138593, + [SMALL_STATE(2023)] = 138634, + [SMALL_STATE(2024)] = 138675, + [SMALL_STATE(2025)] = 138716, + [SMALL_STATE(2026)] = 138757, + [SMALL_STATE(2027)] = 138798, + [SMALL_STATE(2028)] = 138839, + [SMALL_STATE(2029)] = 138880, + [SMALL_STATE(2030)] = 138921, + [SMALL_STATE(2031)] = 138962, + [SMALL_STATE(2032)] = 139003, + [SMALL_STATE(2033)] = 139044, + [SMALL_STATE(2034)] = 139085, + [SMALL_STATE(2035)] = 139126, + [SMALL_STATE(2036)] = 139166, + [SMALL_STATE(2037)] = 139206, + [SMALL_STATE(2038)] = 139256, + [SMALL_STATE(2039)] = 139296, + [SMALL_STATE(2040)] = 139336, + [SMALL_STATE(2041)] = 139376, + [SMALL_STATE(2042)] = 139416, + [SMALL_STATE(2043)] = 139456, + [SMALL_STATE(2044)] = 139496, + [SMALL_STATE(2045)] = 139546, + [SMALL_STATE(2046)] = 139589, + [SMALL_STATE(2047)] = 139626, + [SMALL_STATE(2048)] = 139669, + [SMALL_STATE(2049)] = 139712, + [SMALL_STATE(2050)] = 139755, + [SMALL_STATE(2051)] = 139798, + [SMALL_STATE(2052)] = 139841, + [SMALL_STATE(2053)] = 139884, + [SMALL_STATE(2054)] = 139927, + [SMALL_STATE(2055)] = 139970, + [SMALL_STATE(2056)] = 140013, + [SMALL_STATE(2057)] = 140056, + [SMALL_STATE(2058)] = 140099, + [SMALL_STATE(2059)] = 140142, + [SMALL_STATE(2060)] = 140185, + [SMALL_STATE(2061)] = 140228, + [SMALL_STATE(2062)] = 140271, + [SMALL_STATE(2063)] = 140314, + [SMALL_STATE(2064)] = 140357, + [SMALL_STATE(2065)] = 140400, + [SMALL_STATE(2066)] = 140443, + [SMALL_STATE(2067)] = 140486, + [SMALL_STATE(2068)] = 140529, + [SMALL_STATE(2069)] = 140572, + [SMALL_STATE(2070)] = 140615, + [SMALL_STATE(2071)] = 140658, + [SMALL_STATE(2072)] = 140701, + [SMALL_STATE(2073)] = 140744, + [SMALL_STATE(2074)] = 140787, + [SMALL_STATE(2075)] = 140830, + [SMALL_STATE(2076)] = 140873, + [SMALL_STATE(2077)] = 140916, + [SMALL_STATE(2078)] = 140959, + [SMALL_STATE(2079)] = 141002, + [SMALL_STATE(2080)] = 141045, + [SMALL_STATE(2081)] = 141088, + [SMALL_STATE(2082)] = 141131, + [SMALL_STATE(2083)] = 141174, + [SMALL_STATE(2084)] = 141217, + [SMALL_STATE(2085)] = 141260, + [SMALL_STATE(2086)] = 141303, + [SMALL_STATE(2087)] = 141346, + [SMALL_STATE(2088)] = 141389, + [SMALL_STATE(2089)] = 141432, + [SMALL_STATE(2090)] = 141475, + [SMALL_STATE(2091)] = 141518, + [SMALL_STATE(2092)] = 141561, + [SMALL_STATE(2093)] = 141604, + [SMALL_STATE(2094)] = 141647, + [SMALL_STATE(2095)] = 141690, + [SMALL_STATE(2096)] = 141733, + [SMALL_STATE(2097)] = 141776, + [SMALL_STATE(2098)] = 141819, + [SMALL_STATE(2099)] = 141862, + [SMALL_STATE(2100)] = 141905, + [SMALL_STATE(2101)] = 141948, + [SMALL_STATE(2102)] = 141991, + [SMALL_STATE(2103)] = 142034, + [SMALL_STATE(2104)] = 142077, + [SMALL_STATE(2105)] = 142120, + [SMALL_STATE(2106)] = 142163, + [SMALL_STATE(2107)] = 142206, + [SMALL_STATE(2108)] = 142249, + [SMALL_STATE(2109)] = 142292, + [SMALL_STATE(2110)] = 142335, + [SMALL_STATE(2111)] = 142378, + [SMALL_STATE(2112)] = 142421, + [SMALL_STATE(2113)] = 142464, + [SMALL_STATE(2114)] = 142507, + [SMALL_STATE(2115)] = 142550, + [SMALL_STATE(2116)] = 142593, + [SMALL_STATE(2117)] = 142636, + [SMALL_STATE(2118)] = 142679, + [SMALL_STATE(2119)] = 142722, + [SMALL_STATE(2120)] = 142765, + [SMALL_STATE(2121)] = 142808, + [SMALL_STATE(2122)] = 142851, + [SMALL_STATE(2123)] = 142894, + [SMALL_STATE(2124)] = 142937, + [SMALL_STATE(2125)] = 142980, + [SMALL_STATE(2126)] = 143023, + [SMALL_STATE(2127)] = 143066, + [SMALL_STATE(2128)] = 143109, + [SMALL_STATE(2129)] = 143152, + [SMALL_STATE(2130)] = 143195, + [SMALL_STATE(2131)] = 143238, + [SMALL_STATE(2132)] = 143281, + [SMALL_STATE(2133)] = 143324, + [SMALL_STATE(2134)] = 143367, + [SMALL_STATE(2135)] = 143410, + [SMALL_STATE(2136)] = 143453, + [SMALL_STATE(2137)] = 143496, + [SMALL_STATE(2138)] = 143539, + [SMALL_STATE(2139)] = 143582, + [SMALL_STATE(2140)] = 143625, + [SMALL_STATE(2141)] = 143668, + [SMALL_STATE(2142)] = 143711, + [SMALL_STATE(2143)] = 143754, + [SMALL_STATE(2144)] = 143797, + [SMALL_STATE(2145)] = 143840, + [SMALL_STATE(2146)] = 143883, + [SMALL_STATE(2147)] = 143926, + [SMALL_STATE(2148)] = 143969, + [SMALL_STATE(2149)] = 144012, + [SMALL_STATE(2150)] = 144055, + [SMALL_STATE(2151)] = 144098, + [SMALL_STATE(2152)] = 144141, + [SMALL_STATE(2153)] = 144184, + [SMALL_STATE(2154)] = 144227, + [SMALL_STATE(2155)] = 144270, + [SMALL_STATE(2156)] = 144313, + [SMALL_STATE(2157)] = 144356, + [SMALL_STATE(2158)] = 144399, + [SMALL_STATE(2159)] = 144442, + [SMALL_STATE(2160)] = 144485, + [SMALL_STATE(2161)] = 144528, + [SMALL_STATE(2162)] = 144571, + [SMALL_STATE(2163)] = 144614, + [SMALL_STATE(2164)] = 144657, + [SMALL_STATE(2165)] = 144700, + [SMALL_STATE(2166)] = 144743, + [SMALL_STATE(2167)] = 144786, + [SMALL_STATE(2168)] = 144829, + [SMALL_STATE(2169)] = 144872, + [SMALL_STATE(2170)] = 144915, + [SMALL_STATE(2171)] = 144958, + [SMALL_STATE(2172)] = 145001, + [SMALL_STATE(2173)] = 145044, + [SMALL_STATE(2174)] = 145087, + [SMALL_STATE(2175)] = 145130, + [SMALL_STATE(2176)] = 145173, + [SMALL_STATE(2177)] = 145216, + [SMALL_STATE(2178)] = 145259, + [SMALL_STATE(2179)] = 145302, + [SMALL_STATE(2180)] = 145345, + [SMALL_STATE(2181)] = 145388, + [SMALL_STATE(2182)] = 145431, + [SMALL_STATE(2183)] = 145474, + [SMALL_STATE(2184)] = 145517, + [SMALL_STATE(2185)] = 145560, + [SMALL_STATE(2186)] = 145603, + [SMALL_STATE(2187)] = 145646, + [SMALL_STATE(2188)] = 145689, + [SMALL_STATE(2189)] = 145732, + [SMALL_STATE(2190)] = 145775, + [SMALL_STATE(2191)] = 145818, + [SMALL_STATE(2192)] = 145861, + [SMALL_STATE(2193)] = 145904, + [SMALL_STATE(2194)] = 145947, + [SMALL_STATE(2195)] = 145990, + [SMALL_STATE(2196)] = 146033, + [SMALL_STATE(2197)] = 146076, + [SMALL_STATE(2198)] = 146119, + [SMALL_STATE(2199)] = 146162, + [SMALL_STATE(2200)] = 146205, + [SMALL_STATE(2201)] = 146248, + [SMALL_STATE(2202)] = 146291, + [SMALL_STATE(2203)] = 146334, + [SMALL_STATE(2204)] = 146377, + [SMALL_STATE(2205)] = 146420, + [SMALL_STATE(2206)] = 146463, + [SMALL_STATE(2207)] = 146506, + [SMALL_STATE(2208)] = 146549, + [SMALL_STATE(2209)] = 146592, + [SMALL_STATE(2210)] = 146635, + [SMALL_STATE(2211)] = 146678, + [SMALL_STATE(2212)] = 146721, + [SMALL_STATE(2213)] = 146764, + [SMALL_STATE(2214)] = 146807, + [SMALL_STATE(2215)] = 146850, + [SMALL_STATE(2216)] = 146893, + [SMALL_STATE(2217)] = 146936, + [SMALL_STATE(2218)] = 146979, + [SMALL_STATE(2219)] = 147022, + [SMALL_STATE(2220)] = 147065, + [SMALL_STATE(2221)] = 147108, + [SMALL_STATE(2222)] = 147151, + [SMALL_STATE(2223)] = 147194, + [SMALL_STATE(2224)] = 147237, + [SMALL_STATE(2225)] = 147280, + [SMALL_STATE(2226)] = 147323, + [SMALL_STATE(2227)] = 147366, + [SMALL_STATE(2228)] = 147409, + [SMALL_STATE(2229)] = 147452, + [SMALL_STATE(2230)] = 147495, + [SMALL_STATE(2231)] = 147538, + [SMALL_STATE(2232)] = 147581, + [SMALL_STATE(2233)] = 147624, + [SMALL_STATE(2234)] = 147667, + [SMALL_STATE(2235)] = 147710, + [SMALL_STATE(2236)] = 147753, + [SMALL_STATE(2237)] = 147796, + [SMALL_STATE(2238)] = 147839, + [SMALL_STATE(2239)] = 147882, + [SMALL_STATE(2240)] = 147925, + [SMALL_STATE(2241)] = 147968, + [SMALL_STATE(2242)] = 148011, + [SMALL_STATE(2243)] = 148054, + [SMALL_STATE(2244)] = 148097, + [SMALL_STATE(2245)] = 148140, + [SMALL_STATE(2246)] = 148183, + [SMALL_STATE(2247)] = 148226, + [SMALL_STATE(2248)] = 148269, + [SMALL_STATE(2249)] = 148312, + [SMALL_STATE(2250)] = 148355, + [SMALL_STATE(2251)] = 148398, + [SMALL_STATE(2252)] = 148441, + [SMALL_STATE(2253)] = 148484, + [SMALL_STATE(2254)] = 148527, + [SMALL_STATE(2255)] = 148570, + [SMALL_STATE(2256)] = 148613, + [SMALL_STATE(2257)] = 148656, + [SMALL_STATE(2258)] = 148699, + [SMALL_STATE(2259)] = 148742, + [SMALL_STATE(2260)] = 148785, + [SMALL_STATE(2261)] = 148828, + [SMALL_STATE(2262)] = 148871, + [SMALL_STATE(2263)] = 148914, + [SMALL_STATE(2264)] = 148957, + [SMALL_STATE(2265)] = 149000, + [SMALL_STATE(2266)] = 149043, + [SMALL_STATE(2267)] = 149086, + [SMALL_STATE(2268)] = 149129, + [SMALL_STATE(2269)] = 149172, + [SMALL_STATE(2270)] = 149215, + [SMALL_STATE(2271)] = 149258, + [SMALL_STATE(2272)] = 149301, + [SMALL_STATE(2273)] = 149344, + [SMALL_STATE(2274)] = 149387, + [SMALL_STATE(2275)] = 149430, + [SMALL_STATE(2276)] = 149473, + [SMALL_STATE(2277)] = 149516, + [SMALL_STATE(2278)] = 149559, + [SMALL_STATE(2279)] = 149602, + [SMALL_STATE(2280)] = 149645, + [SMALL_STATE(2281)] = 149688, + [SMALL_STATE(2282)] = 149731, + [SMALL_STATE(2283)] = 149774, + [SMALL_STATE(2284)] = 149817, + [SMALL_STATE(2285)] = 149860, + [SMALL_STATE(2286)] = 149903, + [SMALL_STATE(2287)] = 149946, + [SMALL_STATE(2288)] = 149989, + [SMALL_STATE(2289)] = 150032, + [SMALL_STATE(2290)] = 150075, + [SMALL_STATE(2291)] = 150118, + [SMALL_STATE(2292)] = 150161, + [SMALL_STATE(2293)] = 150204, + [SMALL_STATE(2294)] = 150247, + [SMALL_STATE(2295)] = 150290, + [SMALL_STATE(2296)] = 150333, + [SMALL_STATE(2297)] = 150376, + [SMALL_STATE(2298)] = 150419, + [SMALL_STATE(2299)] = 150462, + [SMALL_STATE(2300)] = 150505, + [SMALL_STATE(2301)] = 150548, + [SMALL_STATE(2302)] = 150591, + [SMALL_STATE(2303)] = 150634, + [SMALL_STATE(2304)] = 150677, + [SMALL_STATE(2305)] = 150720, + [SMALL_STATE(2306)] = 150763, + [SMALL_STATE(2307)] = 150806, + [SMALL_STATE(2308)] = 150849, + [SMALL_STATE(2309)] = 150892, + [SMALL_STATE(2310)] = 150935, + [SMALL_STATE(2311)] = 150978, + [SMALL_STATE(2312)] = 151021, + [SMALL_STATE(2313)] = 151064, + [SMALL_STATE(2314)] = 151107, + [SMALL_STATE(2315)] = 151150, + [SMALL_STATE(2316)] = 151193, + [SMALL_STATE(2317)] = 151236, + [SMALL_STATE(2318)] = 151279, + [SMALL_STATE(2319)] = 151322, + [SMALL_STATE(2320)] = 151365, + [SMALL_STATE(2321)] = 151408, + [SMALL_STATE(2322)] = 151451, + [SMALL_STATE(2323)] = 151494, + [SMALL_STATE(2324)] = 151537, + [SMALL_STATE(2325)] = 151580, + [SMALL_STATE(2326)] = 151623, + [SMALL_STATE(2327)] = 151666, + [SMALL_STATE(2328)] = 151709, + [SMALL_STATE(2329)] = 151752, + [SMALL_STATE(2330)] = 151795, + [SMALL_STATE(2331)] = 151838, + [SMALL_STATE(2332)] = 151881, + [SMALL_STATE(2333)] = 151924, + [SMALL_STATE(2334)] = 151967, + [SMALL_STATE(2335)] = 152010, + [SMALL_STATE(2336)] = 152053, + [SMALL_STATE(2337)] = 152096, + [SMALL_STATE(2338)] = 152139, + [SMALL_STATE(2339)] = 152182, + [SMALL_STATE(2340)] = 152225, + [SMALL_STATE(2341)] = 152268, + [SMALL_STATE(2342)] = 152311, + [SMALL_STATE(2343)] = 152354, + [SMALL_STATE(2344)] = 152397, + [SMALL_STATE(2345)] = 152440, + [SMALL_STATE(2346)] = 152483, + [SMALL_STATE(2347)] = 152526, + [SMALL_STATE(2348)] = 152569, + [SMALL_STATE(2349)] = 152612, + [SMALL_STATE(2350)] = 152655, + [SMALL_STATE(2351)] = 152698, + [SMALL_STATE(2352)] = 152741, + [SMALL_STATE(2353)] = 152784, + [SMALL_STATE(2354)] = 152827, + [SMALL_STATE(2355)] = 152870, + [SMALL_STATE(2356)] = 152913, + [SMALL_STATE(2357)] = 152956, + [SMALL_STATE(2358)] = 152999, + [SMALL_STATE(2359)] = 153042, + [SMALL_STATE(2360)] = 153085, + [SMALL_STATE(2361)] = 153128, + [SMALL_STATE(2362)] = 153171, + [SMALL_STATE(2363)] = 153214, + [SMALL_STATE(2364)] = 153257, + [SMALL_STATE(2365)] = 153300, + [SMALL_STATE(2366)] = 153343, + [SMALL_STATE(2367)] = 153386, + [SMALL_STATE(2368)] = 153429, + [SMALL_STATE(2369)] = 153472, + [SMALL_STATE(2370)] = 153515, + [SMALL_STATE(2371)] = 153558, + [SMALL_STATE(2372)] = 153601, + [SMALL_STATE(2373)] = 153644, + [SMALL_STATE(2374)] = 153687, + [SMALL_STATE(2375)] = 153730, + [SMALL_STATE(2376)] = 153773, + [SMALL_STATE(2377)] = 153816, + [SMALL_STATE(2378)] = 153859, + [SMALL_STATE(2379)] = 153902, + [SMALL_STATE(2380)] = 153945, + [SMALL_STATE(2381)] = 153988, + [SMALL_STATE(2382)] = 154031, + [SMALL_STATE(2383)] = 154074, + [SMALL_STATE(2384)] = 154117, + [SMALL_STATE(2385)] = 154160, + [SMALL_STATE(2386)] = 154203, + [SMALL_STATE(2387)] = 154246, + [SMALL_STATE(2388)] = 154289, + [SMALL_STATE(2389)] = 154332, + [SMALL_STATE(2390)] = 154375, + [SMALL_STATE(2391)] = 154418, + [SMALL_STATE(2392)] = 154461, + [SMALL_STATE(2393)] = 154504, + [SMALL_STATE(2394)] = 154547, + [SMALL_STATE(2395)] = 154590, + [SMALL_STATE(2396)] = 154633, + [SMALL_STATE(2397)] = 154676, + [SMALL_STATE(2398)] = 154719, + [SMALL_STATE(2399)] = 154762, + [SMALL_STATE(2400)] = 154805, + [SMALL_STATE(2401)] = 154848, + [SMALL_STATE(2402)] = 154891, + [SMALL_STATE(2403)] = 154934, + [SMALL_STATE(2404)] = 154977, + [SMALL_STATE(2405)] = 155020, + [SMALL_STATE(2406)] = 155063, + [SMALL_STATE(2407)] = 155106, + [SMALL_STATE(2408)] = 155149, + [SMALL_STATE(2409)] = 155192, + [SMALL_STATE(2410)] = 155235, + [SMALL_STATE(2411)] = 155278, + [SMALL_STATE(2412)] = 155321, + [SMALL_STATE(2413)] = 155364, + [SMALL_STATE(2414)] = 155407, + [SMALL_STATE(2415)] = 155450, + [SMALL_STATE(2416)] = 155493, + [SMALL_STATE(2417)] = 155536, + [SMALL_STATE(2418)] = 155579, + [SMALL_STATE(2419)] = 155622, + [SMALL_STATE(2420)] = 155665, + [SMALL_STATE(2421)] = 155708, + [SMALL_STATE(2422)] = 155751, + [SMALL_STATE(2423)] = 155794, + [SMALL_STATE(2424)] = 155837, + [SMALL_STATE(2425)] = 155880, + [SMALL_STATE(2426)] = 155923, + [SMALL_STATE(2427)] = 155966, + [SMALL_STATE(2428)] = 156009, + [SMALL_STATE(2429)] = 156052, + [SMALL_STATE(2430)] = 156095, + [SMALL_STATE(2431)] = 156138, + [SMALL_STATE(2432)] = 156181, + [SMALL_STATE(2433)] = 156224, + [SMALL_STATE(2434)] = 156267, + [SMALL_STATE(2435)] = 156310, + [SMALL_STATE(2436)] = 156353, + [SMALL_STATE(2437)] = 156396, + [SMALL_STATE(2438)] = 156439, + [SMALL_STATE(2439)] = 156482, + [SMALL_STATE(2440)] = 156525, + [SMALL_STATE(2441)] = 156564, + [SMALL_STATE(2442)] = 156607, + [SMALL_STATE(2443)] = 156650, + [SMALL_STATE(2444)] = 156693, + [SMALL_STATE(2445)] = 156736, + [SMALL_STATE(2446)] = 156779, + [SMALL_STATE(2447)] = 156822, + [SMALL_STATE(2448)] = 156865, + [SMALL_STATE(2449)] = 156908, + [SMALL_STATE(2450)] = 156951, + [SMALL_STATE(2451)] = 156994, + [SMALL_STATE(2452)] = 157037, + [SMALL_STATE(2453)] = 157080, + [SMALL_STATE(2454)] = 157123, + [SMALL_STATE(2455)] = 157166, + [SMALL_STATE(2456)] = 157209, + [SMALL_STATE(2457)] = 157252, + [SMALL_STATE(2458)] = 157295, + [SMALL_STATE(2459)] = 157338, + [SMALL_STATE(2460)] = 157381, + [SMALL_STATE(2461)] = 157424, + [SMALL_STATE(2462)] = 157467, + [SMALL_STATE(2463)] = 157510, + [SMALL_STATE(2464)] = 157553, + [SMALL_STATE(2465)] = 157596, + [SMALL_STATE(2466)] = 157639, + [SMALL_STATE(2467)] = 157682, + [SMALL_STATE(2468)] = 157725, + [SMALL_STATE(2469)] = 157768, + [SMALL_STATE(2470)] = 157811, + [SMALL_STATE(2471)] = 157854, + [SMALL_STATE(2472)] = 157897, + [SMALL_STATE(2473)] = 157940, + [SMALL_STATE(2474)] = 157983, + [SMALL_STATE(2475)] = 158026, + [SMALL_STATE(2476)] = 158069, + [SMALL_STATE(2477)] = 158112, + [SMALL_STATE(2478)] = 158155, + [SMALL_STATE(2479)] = 158198, + [SMALL_STATE(2480)] = 158241, + [SMALL_STATE(2481)] = 158284, + [SMALL_STATE(2482)] = 158327, + [SMALL_STATE(2483)] = 158370, + [SMALL_STATE(2484)] = 158413, + [SMALL_STATE(2485)] = 158456, + [SMALL_STATE(2486)] = 158499, + [SMALL_STATE(2487)] = 158542, + [SMALL_STATE(2488)] = 158585, + [SMALL_STATE(2489)] = 158628, + [SMALL_STATE(2490)] = 158671, + [SMALL_STATE(2491)] = 158714, + [SMALL_STATE(2492)] = 158757, + [SMALL_STATE(2493)] = 158800, + [SMALL_STATE(2494)] = 158843, + [SMALL_STATE(2495)] = 158886, + [SMALL_STATE(2496)] = 158929, + [SMALL_STATE(2497)] = 158970, + [SMALL_STATE(2498)] = 159011, + [SMALL_STATE(2499)] = 159048, + [SMALL_STATE(2500)] = 159091, + [SMALL_STATE(2501)] = 159132, + [SMALL_STATE(2502)] = 159169, + [SMALL_STATE(2503)] = 159212, + [SMALL_STATE(2504)] = 159255, + [SMALL_STATE(2505)] = 159292, + [SMALL_STATE(2506)] = 159329, + [SMALL_STATE(2507)] = 159372, + [SMALL_STATE(2508)] = 159415, + [SMALL_STATE(2509)] = 159458, + [SMALL_STATE(2510)] = 159501, + [SMALL_STATE(2511)] = 159544, + [SMALL_STATE(2512)] = 159581, + [SMALL_STATE(2513)] = 159624, + [SMALL_STATE(2514)] = 159661, + [SMALL_STATE(2515)] = 159698, + [SMALL_STATE(2516)] = 159735, + [SMALL_STATE(2517)] = 159772, + [SMALL_STATE(2518)] = 159815, + [SMALL_STATE(2519)] = 159858, + [SMALL_STATE(2520)] = 159901, + [SMALL_STATE(2521)] = 159944, + [SMALL_STATE(2522)] = 159987, + [SMALL_STATE(2523)] = 160030, + [SMALL_STATE(2524)] = 160067, + [SMALL_STATE(2525)] = 160110, + [SMALL_STATE(2526)] = 160153, + [SMALL_STATE(2527)] = 160196, + [SMALL_STATE(2528)] = 160239, + [SMALL_STATE(2529)] = 160282, + [SMALL_STATE(2530)] = 160319, + [SMALL_STATE(2531)] = 160362, + [SMALL_STATE(2532)] = 160399, + [SMALL_STATE(2533)] = 160436, + [SMALL_STATE(2534)] = 160479, + [SMALL_STATE(2535)] = 160522, + [SMALL_STATE(2536)] = 160565, + [SMALL_STATE(2537)] = 160608, + [SMALL_STATE(2538)] = 160645, + [SMALL_STATE(2539)] = 160688, + [SMALL_STATE(2540)] = 160731, + [SMALL_STATE(2541)] = 160774, + [SMALL_STATE(2542)] = 160817, + [SMALL_STATE(2543)] = 160854, + [SMALL_STATE(2544)] = 160897, + [SMALL_STATE(2545)] = 160934, + [SMALL_STATE(2546)] = 160971, + [SMALL_STATE(2547)] = 161008, + [SMALL_STATE(2548)] = 161051, + [SMALL_STATE(2549)] = 161088, + [SMALL_STATE(2550)] = 161131, + [SMALL_STATE(2551)] = 161168, + [SMALL_STATE(2552)] = 161205, + [SMALL_STATE(2553)] = 161241, + [SMALL_STATE(2554)] = 161277, + [SMALL_STATE(2555)] = 161313, + [SMALL_STATE(2556)] = 161349, + [SMALL_STATE(2557)] = 161385, + [SMALL_STATE(2558)] = 161421, + [SMALL_STATE(2559)] = 161457, + [SMALL_STATE(2560)] = 161493, + [SMALL_STATE(2561)] = 161529, + [SMALL_STATE(2562)] = 161565, + [SMALL_STATE(2563)] = 161601, + [SMALL_STATE(2564)] = 161637, + [SMALL_STATE(2565)] = 161673, + [SMALL_STATE(2566)] = 161709, + [SMALL_STATE(2567)] = 161745, + [SMALL_STATE(2568)] = 161781, + [SMALL_STATE(2569)] = 161817, + [SMALL_STATE(2570)] = 161853, + [SMALL_STATE(2571)] = 161889, + [SMALL_STATE(2572)] = 161925, + [SMALL_STATE(2573)] = 161961, + [SMALL_STATE(2574)] = 161997, + [SMALL_STATE(2575)] = 162033, + [SMALL_STATE(2576)] = 162069, + [SMALL_STATE(2577)] = 162105, + [SMALL_STATE(2578)] = 162141, + [SMALL_STATE(2579)] = 162177, + [SMALL_STATE(2580)] = 162213, + [SMALL_STATE(2581)] = 162249, + [SMALL_STATE(2582)] = 162287, + [SMALL_STATE(2583)] = 162323, + [SMALL_STATE(2584)] = 162359, + [SMALL_STATE(2585)] = 162395, + [SMALL_STATE(2586)] = 162431, + [SMALL_STATE(2587)] = 162467, + [SMALL_STATE(2588)] = 162503, + [SMALL_STATE(2589)] = 162539, + [SMALL_STATE(2590)] = 162575, + [SMALL_STATE(2591)] = 162611, + [SMALL_STATE(2592)] = 162647, + [SMALL_STATE(2593)] = 162683, + [SMALL_STATE(2594)] = 162719, + [SMALL_STATE(2595)] = 162755, + [SMALL_STATE(2596)] = 162791, + [SMALL_STATE(2597)] = 162827, + [SMALL_STATE(2598)] = 162863, + [SMALL_STATE(2599)] = 162899, + [SMALL_STATE(2600)] = 162935, + [SMALL_STATE(2601)] = 162971, + [SMALL_STATE(2602)] = 163007, + [SMALL_STATE(2603)] = 163043, + [SMALL_STATE(2604)] = 163079, + [SMALL_STATE(2605)] = 163115, + [SMALL_STATE(2606)] = 163151, + [SMALL_STATE(2607)] = 163187, + [SMALL_STATE(2608)] = 163223, + [SMALL_STATE(2609)] = 163259, + [SMALL_STATE(2610)] = 163295, + [SMALL_STATE(2611)] = 163331, + [SMALL_STATE(2612)] = 163367, + [SMALL_STATE(2613)] = 163403, + [SMALL_STATE(2614)] = 163439, + [SMALL_STATE(2615)] = 163475, + [SMALL_STATE(2616)] = 163511, + [SMALL_STATE(2617)] = 163547, + [SMALL_STATE(2618)] = 163583, + [SMALL_STATE(2619)] = 163619, + [SMALL_STATE(2620)] = 163655, + [SMALL_STATE(2621)] = 163691, + [SMALL_STATE(2622)] = 163727, + [SMALL_STATE(2623)] = 163763, + [SMALL_STATE(2624)] = 163799, + [SMALL_STATE(2625)] = 163835, + [SMALL_STATE(2626)] = 163871, + [SMALL_STATE(2627)] = 163907, + [SMALL_STATE(2628)] = 163943, + [SMALL_STATE(2629)] = 163979, + [SMALL_STATE(2630)] = 164015, + [SMALL_STATE(2631)] = 164051, + [SMALL_STATE(2632)] = 164087, + [SMALL_STATE(2633)] = 164123, + [SMALL_STATE(2634)] = 164159, + [SMALL_STATE(2635)] = 164195, + [SMALL_STATE(2636)] = 164231, + [SMALL_STATE(2637)] = 164267, + [SMALL_STATE(2638)] = 164303, + [SMALL_STATE(2639)] = 164339, + [SMALL_STATE(2640)] = 164375, + [SMALL_STATE(2641)] = 164411, + [SMALL_STATE(2642)] = 164447, + [SMALL_STATE(2643)] = 164483, + [SMALL_STATE(2644)] = 164519, + [SMALL_STATE(2645)] = 164555, + [SMALL_STATE(2646)] = 164591, + [SMALL_STATE(2647)] = 164627, + [SMALL_STATE(2648)] = 164663, + [SMALL_STATE(2649)] = 164699, + [SMALL_STATE(2650)] = 164738, + [SMALL_STATE(2651)] = 164777, + [SMALL_STATE(2652)] = 164816, + [SMALL_STATE(2653)] = 164855, + [SMALL_STATE(2654)] = 164894, + [SMALL_STATE(2655)] = 164933, + [SMALL_STATE(2656)] = 164972, + [SMALL_STATE(2657)] = 165011, + [SMALL_STATE(2658)] = 165050, + [SMALL_STATE(2659)] = 165089, + [SMALL_STATE(2660)] = 165128, + [SMALL_STATE(2661)] = 165167, + [SMALL_STATE(2662)] = 165206, + [SMALL_STATE(2663)] = 165245, + [SMALL_STATE(2664)] = 165284, + [SMALL_STATE(2665)] = 165323, + [SMALL_STATE(2666)] = 165362, + [SMALL_STATE(2667)] = 165401, + [SMALL_STATE(2668)] = 165438, + [SMALL_STATE(2669)] = 165477, + [SMALL_STATE(2670)] = 165516, + [SMALL_STATE(2671)] = 165555, + [SMALL_STATE(2672)] = 165594, + [SMALL_STATE(2673)] = 165633, + [SMALL_STATE(2674)] = 165672, + [SMALL_STATE(2675)] = 165706, + [SMALL_STATE(2676)] = 165740, + [SMALL_STATE(2677)] = 165774, + [SMALL_STATE(2678)] = 165808, + [SMALL_STATE(2679)] = 165842, + [SMALL_STATE(2680)] = 165876, + [SMALL_STATE(2681)] = 165928, + [SMALL_STATE(2682)] = 165962, + [SMALL_STATE(2683)] = 166014, + [SMALL_STATE(2684)] = 166066, + [SMALL_STATE(2685)] = 166100, + [SMALL_STATE(2686)] = 166152, + [SMALL_STATE(2687)] = 166186, + [SMALL_STATE(2688)] = 166238, + [SMALL_STATE(2689)] = 166272, + [SMALL_STATE(2690)] = 166324, + [SMALL_STATE(2691)] = 166358, + [SMALL_STATE(2692)] = 166392, + [SMALL_STATE(2693)] = 166426, + [SMALL_STATE(2694)] = 166460, + [SMALL_STATE(2695)] = 166494, + [SMALL_STATE(2696)] = 166546, + [SMALL_STATE(2697)] = 166594, + [SMALL_STATE(2698)] = 166646, + [SMALL_STATE(2699)] = 166698, + [SMALL_STATE(2700)] = 166732, + [SMALL_STATE(2701)] = 166766, + [SMALL_STATE(2702)] = 166800, + [SMALL_STATE(2703)] = 166834, + [SMALL_STATE(2704)] = 166868, + [SMALL_STATE(2705)] = 166916, + [SMALL_STATE(2706)] = 166950, + [SMALL_STATE(2707)] = 166984, + [SMALL_STATE(2708)] = 167018, + [SMALL_STATE(2709)] = 167052, + [SMALL_STATE(2710)] = 167086, + [SMALL_STATE(2711)] = 167120, + [SMALL_STATE(2712)] = 167154, + [SMALL_STATE(2713)] = 167188, + [SMALL_STATE(2714)] = 167240, + [SMALL_STATE(2715)] = 167274, + [SMALL_STATE(2716)] = 167308, + [SMALL_STATE(2717)] = 167342, + [SMALL_STATE(2718)] = 167394, + [SMALL_STATE(2719)] = 167428, + [SMALL_STATE(2720)] = 167462, + [SMALL_STATE(2721)] = 167496, + [SMALL_STATE(2722)] = 167530, + [SMALL_STATE(2723)] = 167582, + [SMALL_STATE(2724)] = 167616, + [SMALL_STATE(2725)] = 167668, + [SMALL_STATE(2726)] = 167702, + [SMALL_STATE(2727)] = 167736, + [SMALL_STATE(2728)] = 167770, + [SMALL_STATE(2729)] = 167804, + [SMALL_STATE(2730)] = 167838, + [SMALL_STATE(2731)] = 167872, + [SMALL_STATE(2732)] = 167906, + [SMALL_STATE(2733)] = 167940, + [SMALL_STATE(2734)] = 167992, + [SMALL_STATE(2735)] = 168044, + [SMALL_STATE(2736)] = 168078, + [SMALL_STATE(2737)] = 168112, + [SMALL_STATE(2738)] = 168146, + [SMALL_STATE(2739)] = 168180, + [SMALL_STATE(2740)] = 168214, + [SMALL_STATE(2741)] = 168248, + [SMALL_STATE(2742)] = 168282, + [SMALL_STATE(2743)] = 168334, + [SMALL_STATE(2744)] = 168386, + [SMALL_STATE(2745)] = 168438, + [SMALL_STATE(2746)] = 168472, + [SMALL_STATE(2747)] = 168518, + [SMALL_STATE(2748)] = 168557, + [SMALL_STATE(2749)] = 168588, + [SMALL_STATE(2750)] = 168619, + [SMALL_STATE(2751)] = 168681, + [SMALL_STATE(2752)] = 168747, + [SMALL_STATE(2753)] = 168809, + [SMALL_STATE(2754)] = 168875, + [SMALL_STATE(2755)] = 168941, + [SMALL_STATE(2756)] = 169003, + [SMALL_STATE(2757)] = 169065, + [SMALL_STATE(2758)] = 169127, + [SMALL_STATE(2759)] = 169189, + [SMALL_STATE(2760)] = 169251, + [SMALL_STATE(2761)] = 169317, + [SMALL_STATE(2762)] = 169379, + [SMALL_STATE(2763)] = 169414, + [SMALL_STATE(2764)] = 169449, + [SMALL_STATE(2765)] = 169480, + [SMALL_STATE(2766)] = 169515, + [SMALL_STATE(2767)] = 169548, + [SMALL_STATE(2768)] = 169583, + [SMALL_STATE(2769)] = 169613, + [SMALL_STATE(2770)] = 169643, + [SMALL_STATE(2771)] = 169673, + [SMALL_STATE(2772)] = 169703, + [SMALL_STATE(2773)] = 169733, + [SMALL_STATE(2774)] = 169763, + [SMALL_STATE(2775)] = 169793, + [SMALL_STATE(2776)] = 169823, + [SMALL_STATE(2777)] = 169853, + [SMALL_STATE(2778)] = 169883, + [SMALL_STATE(2779)] = 169913, + [SMALL_STATE(2780)] = 169943, + [SMALL_STATE(2781)] = 169973, + [SMALL_STATE(2782)] = 170003, + [SMALL_STATE(2783)] = 170033, + [SMALL_STATE(2784)] = 170063, + [SMALL_STATE(2785)] = 170093, + [SMALL_STATE(2786)] = 170123, + [SMALL_STATE(2787)] = 170153, + [SMALL_STATE(2788)] = 170183, + [SMALL_STATE(2789)] = 170213, + [SMALL_STATE(2790)] = 170243, + [SMALL_STATE(2791)] = 170273, + [SMALL_STATE(2792)] = 170303, + [SMALL_STATE(2793)] = 170333, + [SMALL_STATE(2794)] = 170363, + [SMALL_STATE(2795)] = 170393, + [SMALL_STATE(2796)] = 170423, + [SMALL_STATE(2797)] = 170453, + [SMALL_STATE(2798)] = 170483, + [SMALL_STATE(2799)] = 170513, + [SMALL_STATE(2800)] = 170542, + [SMALL_STATE(2801)] = 170571, + [SMALL_STATE(2802)] = 170600, + [SMALL_STATE(2803)] = 170629, + [SMALL_STATE(2804)] = 170658, + [SMALL_STATE(2805)] = 170721, + [SMALL_STATE(2806)] = 170750, + [SMALL_STATE(2807)] = 170779, + [SMALL_STATE(2808)] = 170808, + [SMALL_STATE(2809)] = 170871, + [SMALL_STATE(2810)] = 170900, + [SMALL_STATE(2811)] = 170963, + [SMALL_STATE(2812)] = 170992, + [SMALL_STATE(2813)] = 171055, + [SMALL_STATE(2814)] = 171118, + [SMALL_STATE(2815)] = 171147, + [SMALL_STATE(2816)] = 171210, + [SMALL_STATE(2817)] = 171239, + [SMALL_STATE(2818)] = 171268, + [SMALL_STATE(2819)] = 171297, + [SMALL_STATE(2820)] = 171326, + [SMALL_STATE(2821)] = 171355, + [SMALL_STATE(2822)] = 171418, + [SMALL_STATE(2823)] = 171447, + [SMALL_STATE(2824)] = 171476, + [SMALL_STATE(2825)] = 171505, + [SMALL_STATE(2826)] = 171534, + [SMALL_STATE(2827)] = 171563, + [SMALL_STATE(2828)] = 171626, + [SMALL_STATE(2829)] = 171689, + [SMALL_STATE(2830)] = 171718, + [SMALL_STATE(2831)] = 171781, + [SMALL_STATE(2832)] = 171810, + [SMALL_STATE(2833)] = 171873, + [SMALL_STATE(2834)] = 171936, + [SMALL_STATE(2835)] = 171999, + [SMALL_STATE(2836)] = 172028, + [SMALL_STATE(2837)] = 172057, + [SMALL_STATE(2838)] = 172086, + [SMALL_STATE(2839)] = 172115, + [SMALL_STATE(2840)] = 172178, + [SMALL_STATE(2841)] = 172207, + [SMALL_STATE(2842)] = 172270, + [SMALL_STATE(2843)] = 172299, + [SMALL_STATE(2844)] = 172328, + [SMALL_STATE(2845)] = 172357, + [SMALL_STATE(2846)] = 172386, + [SMALL_STATE(2847)] = 172437, + [SMALL_STATE(2848)] = 172488, + [SMALL_STATE(2849)] = 172531, + [SMALL_STATE(2850)] = 172582, + [SMALL_STATE(2851)] = 172613, + [SMALL_STATE(2852)] = 172664, + [SMALL_STATE(2853)] = 172707, + [SMALL_STATE(2854)] = 172740, + [SMALL_STATE(2855)] = 172789, + [SMALL_STATE(2856)] = 172840, + [SMALL_STATE(2857)] = 172871, + [SMALL_STATE(2858)] = 172922, + [SMALL_STATE(2859)] = 172955, + [SMALL_STATE(2860)] = 172988, + [SMALL_STATE(2861)] = 173039, + [SMALL_STATE(2862)] = 173090, + [SMALL_STATE(2863)] = 173141, + [SMALL_STATE(2864)] = 173192, + [SMALL_STATE(2865)] = 173243, + [SMALL_STATE(2866)] = 173294, + [SMALL_STATE(2867)] = 173345, + [SMALL_STATE(2868)] = 173396, + [SMALL_STATE(2869)] = 173429, + [SMALL_STATE(2870)] = 173462, + [SMALL_STATE(2871)] = 173511, + [SMALL_STATE(2872)] = 173562, + [SMALL_STATE(2873)] = 173613, + [SMALL_STATE(2874)] = 173643, + [SMALL_STATE(2875)] = 173673, + [SMALL_STATE(2876)] = 173703, + [SMALL_STATE(2877)] = 173740, + [SMALL_STATE(2878)] = 173765, + [SMALL_STATE(2879)] = 173790, + [SMALL_STATE(2880)] = 173815, + [SMALL_STATE(2881)] = 173840, + [SMALL_STATE(2882)] = 173865, + [SMALL_STATE(2883)] = 173890, + [SMALL_STATE(2884)] = 173915, + [SMALL_STATE(2885)] = 173940, + [SMALL_STATE(2886)] = 173965, + [SMALL_STATE(2887)] = 173992, + [SMALL_STATE(2888)] = 174017, + [SMALL_STATE(2889)] = 174062, + [SMALL_STATE(2890)] = 174107, + [SMALL_STATE(2891)] = 174152, + [SMALL_STATE(2892)] = 174197, + [SMALL_STATE(2893)] = 174242, + [SMALL_STATE(2894)] = 174287, + [SMALL_STATE(2895)] = 174332, + [SMALL_STATE(2896)] = 174377, + [SMALL_STATE(2897)] = 174422, + [SMALL_STATE(2898)] = 174467, + [SMALL_STATE(2899)] = 174512, + [SMALL_STATE(2900)] = 174557, + [SMALL_STATE(2901)] = 174581, + [SMALL_STATE(2902)] = 174603, + [SMALL_STATE(2903)] = 174631, + [SMALL_STATE(2904)] = 174657, + [SMALL_STATE(2905)] = 174678, + [SMALL_STATE(2906)] = 174699, + [SMALL_STATE(2907)] = 174720, + [SMALL_STATE(2908)] = 174741, + [SMALL_STATE(2909)] = 174762, + [SMALL_STATE(2910)] = 174783, + [SMALL_STATE(2911)] = 174804, + [SMALL_STATE(2912)] = 174825, + [SMALL_STATE(2913)] = 174846, + [SMALL_STATE(2914)] = 174867, + [SMALL_STATE(2915)] = 174888, + [SMALL_STATE(2916)] = 174909, + [SMALL_STATE(2917)] = 174930, + [SMALL_STATE(2918)] = 174951, + [SMALL_STATE(2919)] = 174972, + [SMALL_STATE(2920)] = 174993, + [SMALL_STATE(2921)] = 175014, + [SMALL_STATE(2922)] = 175035, + [SMALL_STATE(2923)] = 175056, + [SMALL_STATE(2924)] = 175077, + [SMALL_STATE(2925)] = 175098, + [SMALL_STATE(2926)] = 175119, + [SMALL_STATE(2927)] = 175140, + [SMALL_STATE(2928)] = 175161, + [SMALL_STATE(2929)] = 175182, + [SMALL_STATE(2930)] = 175203, + [SMALL_STATE(2931)] = 175224, + [SMALL_STATE(2932)] = 175245, + [SMALL_STATE(2933)] = 175266, + [SMALL_STATE(2934)] = 175287, + [SMALL_STATE(2935)] = 175308, + [SMALL_STATE(2936)] = 175329, + [SMALL_STATE(2937)] = 175350, + [SMALL_STATE(2938)] = 175371, + [SMALL_STATE(2939)] = 175392, + [SMALL_STATE(2940)] = 175413, + [SMALL_STATE(2941)] = 175434, + [SMALL_STATE(2942)] = 175455, + [SMALL_STATE(2943)] = 175476, + [SMALL_STATE(2944)] = 175497, + [SMALL_STATE(2945)] = 175518, + [SMALL_STATE(2946)] = 175539, + [SMALL_STATE(2947)] = 175560, + [SMALL_STATE(2948)] = 175581, + [SMALL_STATE(2949)] = 175602, + [SMALL_STATE(2950)] = 175623, + [SMALL_STATE(2951)] = 175644, + [SMALL_STATE(2952)] = 175665, + [SMALL_STATE(2953)] = 175686, + [SMALL_STATE(2954)] = 175707, + [SMALL_STATE(2955)] = 175728, + [SMALL_STATE(2956)] = 175749, + [SMALL_STATE(2957)] = 175770, + [SMALL_STATE(2958)] = 175791, + [SMALL_STATE(2959)] = 175812, + [SMALL_STATE(2960)] = 175833, + [SMALL_STATE(2961)] = 175854, + [SMALL_STATE(2962)] = 175875, + [SMALL_STATE(2963)] = 175896, + [SMALL_STATE(2964)] = 175917, + [SMALL_STATE(2965)] = 175938, + [SMALL_STATE(2966)] = 175959, + [SMALL_STATE(2967)] = 175980, + [SMALL_STATE(2968)] = 176001, + [SMALL_STATE(2969)] = 176026, + [SMALL_STATE(2970)] = 176051, + [SMALL_STATE(2971)] = 176076, + [SMALL_STATE(2972)] = 176097, + [SMALL_STATE(2973)] = 176122, + [SMALL_STATE(2974)] = 176143, + [SMALL_STATE(2975)] = 176164, + [SMALL_STATE(2976)] = 176185, + [SMALL_STATE(2977)] = 176206, + [SMALL_STATE(2978)] = 176227, + [SMALL_STATE(2979)] = 176248, + [SMALL_STATE(2980)] = 176269, + [SMALL_STATE(2981)] = 176290, + [SMALL_STATE(2982)] = 176311, + [SMALL_STATE(2983)] = 176336, + [SMALL_STATE(2984)] = 176357, + [SMALL_STATE(2985)] = 176384, + [SMALL_STATE(2986)] = 176405, + [SMALL_STATE(2987)] = 176426, + [SMALL_STATE(2988)] = 176447, + [SMALL_STATE(2989)] = 176468, + [SMALL_STATE(2990)] = 176489, + [SMALL_STATE(2991)] = 176510, + [SMALL_STATE(2992)] = 176531, + [SMALL_STATE(2993)] = 176552, + [SMALL_STATE(2994)] = 176573, + [SMALL_STATE(2995)] = 176594, + [SMALL_STATE(2996)] = 176615, + [SMALL_STATE(2997)] = 176636, + [SMALL_STATE(2998)] = 176657, + [SMALL_STATE(2999)] = 176678, + [SMALL_STATE(3000)] = 176698, + [SMALL_STATE(3001)] = 176727, + [SMALL_STATE(3002)] = 176760, + [SMALL_STATE(3003)] = 176793, + [SMALL_STATE(3004)] = 176822, + [SMALL_STATE(3005)] = 176851, + [SMALL_STATE(3006)] = 176884, + [SMALL_STATE(3007)] = 176913, + [SMALL_STATE(3008)] = 176946, + [SMALL_STATE(3009)] = 176975, + [SMALL_STATE(3010)] = 177008, + [SMALL_STATE(3011)] = 177041, + [SMALL_STATE(3012)] = 177074, + [SMALL_STATE(3013)] = 177103, + [SMALL_STATE(3014)] = 177136, + [SMALL_STATE(3015)] = 177169, + [SMALL_STATE(3016)] = 177202, + [SMALL_STATE(3017)] = 177235, + [SMALL_STATE(3018)] = 177264, + [SMALL_STATE(3019)] = 177297, + [SMALL_STATE(3020)] = 177330, + [SMALL_STATE(3021)] = 177359, + [SMALL_STATE(3022)] = 177388, + [SMALL_STATE(3023)] = 177417, + [SMALL_STATE(3024)] = 177450, + [SMALL_STATE(3025)] = 177483, + [SMALL_STATE(3026)] = 177512, + [SMALL_STATE(3027)] = 177533, + [SMALL_STATE(3028)] = 177566, + [SMALL_STATE(3029)] = 177595, + [SMALL_STATE(3030)] = 177624, + [SMALL_STATE(3031)] = 177657, + [SMALL_STATE(3032)] = 177686, + [SMALL_STATE(3033)] = 177715, + [SMALL_STATE(3034)] = 177744, + [SMALL_STATE(3035)] = 177777, + [SMALL_STATE(3036)] = 177810, + [SMALL_STATE(3037)] = 177839, + [SMALL_STATE(3038)] = 177868, + [SMALL_STATE(3039)] = 177901, + [SMALL_STATE(3040)] = 177922, + [SMALL_STATE(3041)] = 177955, + [SMALL_STATE(3042)] = 177984, + [SMALL_STATE(3043)] = 178005, + [SMALL_STATE(3044)] = 178034, + [SMALL_STATE(3045)] = 178063, + [SMALL_STATE(3046)] = 178096, + [SMALL_STATE(3047)] = 178125, + [SMALL_STATE(3048)] = 178158, + [SMALL_STATE(3049)] = 178191, + [SMALL_STATE(3050)] = 178220, + [SMALL_STATE(3051)] = 178249, + [SMALL_STATE(3052)] = 178278, + [SMALL_STATE(3053)] = 178311, + [SMALL_STATE(3054)] = 178341, + [SMALL_STATE(3055)] = 178359, + [SMALL_STATE(3056)] = 178377, + [SMALL_STATE(3057)] = 178395, + [SMALL_STATE(3058)] = 178413, + [SMALL_STATE(3059)] = 178431, + [SMALL_STATE(3060)] = 178449, + [SMALL_STATE(3061)] = 178479, + [SMALL_STATE(3062)] = 178497, + [SMALL_STATE(3063)] = 178515, + [SMALL_STATE(3064)] = 178533, + [SMALL_STATE(3065)] = 178551, + [SMALL_STATE(3066)] = 178581, + [SMALL_STATE(3067)] = 178611, + [SMALL_STATE(3068)] = 178629, + [SMALL_STATE(3069)] = 178647, + [SMALL_STATE(3070)] = 178665, + [SMALL_STATE(3071)] = 178683, + [SMALL_STATE(3072)] = 178713, + [SMALL_STATE(3073)] = 178743, + [SMALL_STATE(3074)] = 178773, + [SMALL_STATE(3075)] = 178791, + [SMALL_STATE(3076)] = 178821, + [SMALL_STATE(3077)] = 178841, + [SMALL_STATE(3078)] = 178861, + [SMALL_STATE(3079)] = 178881, + [SMALL_STATE(3080)] = 178903, + [SMALL_STATE(3081)] = 178933, + [SMALL_STATE(3082)] = 178951, + [SMALL_STATE(3083)] = 178969, + [SMALL_STATE(3084)] = 178987, + [SMALL_STATE(3085)] = 179005, + [SMALL_STATE(3086)] = 179031, + [SMALL_STATE(3087)] = 179049, + [SMALL_STATE(3088)] = 179067, + [SMALL_STATE(3089)] = 179085, + [SMALL_STATE(3090)] = 179103, + [SMALL_STATE(3091)] = 179133, + [SMALL_STATE(3092)] = 179151, + [SMALL_STATE(3093)] = 179169, + [SMALL_STATE(3094)] = 179187, + [SMALL_STATE(3095)] = 179209, + [SMALL_STATE(3096)] = 179227, + [SMALL_STATE(3097)] = 179245, + [SMALL_STATE(3098)] = 179263, + [SMALL_STATE(3099)] = 179281, + [SMALL_STATE(3100)] = 179299, + [SMALL_STATE(3101)] = 179317, + [SMALL_STATE(3102)] = 179345, + [SMALL_STATE(3103)] = 179375, + [SMALL_STATE(3104)] = 179405, + [SMALL_STATE(3105)] = 179436, + [SMALL_STATE(3106)] = 179461, + [SMALL_STATE(3107)] = 179492, + [SMALL_STATE(3108)] = 179517, + [SMALL_STATE(3109)] = 179539, + [SMALL_STATE(3110)] = 179561, + [SMALL_STATE(3111)] = 179589, + [SMALL_STATE(3112)] = 179617, + [SMALL_STATE(3113)] = 179645, + [SMALL_STATE(3114)] = 179673, + [SMALL_STATE(3115)] = 179701, + [SMALL_STATE(3116)] = 179729, + [SMALL_STATE(3117)] = 179757, + [SMALL_STATE(3118)] = 179785, + [SMALL_STATE(3119)] = 179807, + [SMALL_STATE(3120)] = 179829, + [SMALL_STATE(3121)] = 179851, + [SMALL_STATE(3122)] = 179873, + [SMALL_STATE(3123)] = 179895, + [SMALL_STATE(3124)] = 179917, + [SMALL_STATE(3125)] = 179939, + [SMALL_STATE(3126)] = 179961, + [SMALL_STATE(3127)] = 179983, + [SMALL_STATE(3128)] = 180005, + [SMALL_STATE(3129)] = 180027, + [SMALL_STATE(3130)] = 180049, + [SMALL_STATE(3131)] = 180071, + [SMALL_STATE(3132)] = 180093, + [SMALL_STATE(3133)] = 180115, + [SMALL_STATE(3134)] = 180137, + [SMALL_STATE(3135)] = 180159, + [SMALL_STATE(3136)] = 180181, + [SMALL_STATE(3137)] = 180203, + [SMALL_STATE(3138)] = 180225, + [SMALL_STATE(3139)] = 180247, + [SMALL_STATE(3140)] = 180269, + [SMALL_STATE(3141)] = 180291, + [SMALL_STATE(3142)] = 180313, + [SMALL_STATE(3143)] = 180335, + [SMALL_STATE(3144)] = 180357, + [SMALL_STATE(3145)] = 180379, + [SMALL_STATE(3146)] = 180401, + [SMALL_STATE(3147)] = 180423, + [SMALL_STATE(3148)] = 180445, + [SMALL_STATE(3149)] = 180467, + [SMALL_STATE(3150)] = 180489, + [SMALL_STATE(3151)] = 180511, + [SMALL_STATE(3152)] = 180533, + [SMALL_STATE(3153)] = 180555, + [SMALL_STATE(3154)] = 180577, + [SMALL_STATE(3155)] = 180599, + [SMALL_STATE(3156)] = 180621, + [SMALL_STATE(3157)] = 180643, + [SMALL_STATE(3158)] = 180665, + [SMALL_STATE(3159)] = 180687, + [SMALL_STATE(3160)] = 180709, + [SMALL_STATE(3161)] = 180731, + [SMALL_STATE(3162)] = 180753, + [SMALL_STATE(3163)] = 180775, + [SMALL_STATE(3164)] = 180797, + [SMALL_STATE(3165)] = 180819, + [SMALL_STATE(3166)] = 180841, + [SMALL_STATE(3167)] = 180863, + [SMALL_STATE(3168)] = 180885, + [SMALL_STATE(3169)] = 180907, + [SMALL_STATE(3170)] = 180929, + [SMALL_STATE(3171)] = 180951, + [SMALL_STATE(3172)] = 180973, + [SMALL_STATE(3173)] = 180995, + [SMALL_STATE(3174)] = 181017, + [SMALL_STATE(3175)] = 181039, + [SMALL_STATE(3176)] = 181061, + [SMALL_STATE(3177)] = 181083, + [SMALL_STATE(3178)] = 181105, + [SMALL_STATE(3179)] = 181127, + [SMALL_STATE(3180)] = 181149, + [SMALL_STATE(3181)] = 181171, + [SMALL_STATE(3182)] = 181193, + [SMALL_STATE(3183)] = 181215, + [SMALL_STATE(3184)] = 181237, + [SMALL_STATE(3185)] = 181259, + [SMALL_STATE(3186)] = 181281, + [SMALL_STATE(3187)] = 181303, + [SMALL_STATE(3188)] = 181325, + [SMALL_STATE(3189)] = 181347, + [SMALL_STATE(3190)] = 181369, + [SMALL_STATE(3191)] = 181391, + [SMALL_STATE(3192)] = 181413, + [SMALL_STATE(3193)] = 181435, + [SMALL_STATE(3194)] = 181457, + [SMALL_STATE(3195)] = 181479, + [SMALL_STATE(3196)] = 181501, + [SMALL_STATE(3197)] = 181523, + [SMALL_STATE(3198)] = 181545, + [SMALL_STATE(3199)] = 181567, + [SMALL_STATE(3200)] = 181589, + [SMALL_STATE(3201)] = 181611, + [SMALL_STATE(3202)] = 181633, + [SMALL_STATE(3203)] = 181655, + [SMALL_STATE(3204)] = 181677, + [SMALL_STATE(3205)] = 181699, + [SMALL_STATE(3206)] = 181721, + [SMALL_STATE(3207)] = 181743, + [SMALL_STATE(3208)] = 181765, + [SMALL_STATE(3209)] = 181787, + [SMALL_STATE(3210)] = 181809, + [SMALL_STATE(3211)] = 181831, + [SMALL_STATE(3212)] = 181853, + [SMALL_STATE(3213)] = 181875, + [SMALL_STATE(3214)] = 181897, + [SMALL_STATE(3215)] = 181919, + [SMALL_STATE(3216)] = 181941, + [SMALL_STATE(3217)] = 181963, + [SMALL_STATE(3218)] = 181985, + [SMALL_STATE(3219)] = 182007, + [SMALL_STATE(3220)] = 182029, + [SMALL_STATE(3221)] = 182051, + [SMALL_STATE(3222)] = 182073, + [SMALL_STATE(3223)] = 182095, + [SMALL_STATE(3224)] = 182117, + [SMALL_STATE(3225)] = 182139, + [SMALL_STATE(3226)] = 182161, + [SMALL_STATE(3227)] = 182183, + [SMALL_STATE(3228)] = 182205, + [SMALL_STATE(3229)] = 182227, + [SMALL_STATE(3230)] = 182249, + [SMALL_STATE(3231)] = 182271, + [SMALL_STATE(3232)] = 182293, + [SMALL_STATE(3233)] = 182315, + [SMALL_STATE(3234)] = 182337, + [SMALL_STATE(3235)] = 182359, + [SMALL_STATE(3236)] = 182381, + [SMALL_STATE(3237)] = 182403, + [SMALL_STATE(3238)] = 182425, + [SMALL_STATE(3239)] = 182447, + [SMALL_STATE(3240)] = 182469, + [SMALL_STATE(3241)] = 182491, + [SMALL_STATE(3242)] = 182513, + [SMALL_STATE(3243)] = 182535, + [SMALL_STATE(3244)] = 182557, + [SMALL_STATE(3245)] = 182579, + [SMALL_STATE(3246)] = 182601, + [SMALL_STATE(3247)] = 182623, + [SMALL_STATE(3248)] = 182645, + [SMALL_STATE(3249)] = 182667, + [SMALL_STATE(3250)] = 182689, + [SMALL_STATE(3251)] = 182711, + [SMALL_STATE(3252)] = 182733, + [SMALL_STATE(3253)] = 182755, + [SMALL_STATE(3254)] = 182777, + [SMALL_STATE(3255)] = 182799, + [SMALL_STATE(3256)] = 182821, + [SMALL_STATE(3257)] = 182843, + [SMALL_STATE(3258)] = 182865, + [SMALL_STATE(3259)] = 182887, + [SMALL_STATE(3260)] = 182909, + [SMALL_STATE(3261)] = 182931, + [SMALL_STATE(3262)] = 182953, + [SMALL_STATE(3263)] = 182975, + [SMALL_STATE(3264)] = 182997, + [SMALL_STATE(3265)] = 183019, + [SMALL_STATE(3266)] = 183041, + [SMALL_STATE(3267)] = 183063, + [SMALL_STATE(3268)] = 183085, + [SMALL_STATE(3269)] = 183107, + [SMALL_STATE(3270)] = 183129, + [SMALL_STATE(3271)] = 183151, + [SMALL_STATE(3272)] = 183173, + [SMALL_STATE(3273)] = 183195, + [SMALL_STATE(3274)] = 183217, + [SMALL_STATE(3275)] = 183239, + [SMALL_STATE(3276)] = 183261, + [SMALL_STATE(3277)] = 183283, + [SMALL_STATE(3278)] = 183305, + [SMALL_STATE(3279)] = 183327, + [SMALL_STATE(3280)] = 183349, + [SMALL_STATE(3281)] = 183371, + [SMALL_STATE(3282)] = 183393, + [SMALL_STATE(3283)] = 183415, + [SMALL_STATE(3284)] = 183437, + [SMALL_STATE(3285)] = 183459, + [SMALL_STATE(3286)] = 183481, + [SMALL_STATE(3287)] = 183503, + [SMALL_STATE(3288)] = 183525, + [SMALL_STATE(3289)] = 183547, + [SMALL_STATE(3290)] = 183569, + [SMALL_STATE(3291)] = 183591, + [SMALL_STATE(3292)] = 183613, + [SMALL_STATE(3293)] = 183635, + [SMALL_STATE(3294)] = 183657, + [SMALL_STATE(3295)] = 183679, + [SMALL_STATE(3296)] = 183701, + [SMALL_STATE(3297)] = 183723, + [SMALL_STATE(3298)] = 183745, + [SMALL_STATE(3299)] = 183767, + [SMALL_STATE(3300)] = 183789, + [SMALL_STATE(3301)] = 183811, + [SMALL_STATE(3302)] = 183833, + [SMALL_STATE(3303)] = 183855, + [SMALL_STATE(3304)] = 183877, + [SMALL_STATE(3305)] = 183899, + [SMALL_STATE(3306)] = 183921, + [SMALL_STATE(3307)] = 183943, + [SMALL_STATE(3308)] = 183965, + [SMALL_STATE(3309)] = 183987, + [SMALL_STATE(3310)] = 184009, + [SMALL_STATE(3311)] = 184031, + [SMALL_STATE(3312)] = 184053, + [SMALL_STATE(3313)] = 184075, + [SMALL_STATE(3314)] = 184097, + [SMALL_STATE(3315)] = 184119, + [SMALL_STATE(3316)] = 184141, + [SMALL_STATE(3317)] = 184163, + [SMALL_STATE(3318)] = 184185, + [SMALL_STATE(3319)] = 184207, + [SMALL_STATE(3320)] = 184229, + [SMALL_STATE(3321)] = 184251, + [SMALL_STATE(3322)] = 184273, + [SMALL_STATE(3323)] = 184295, + [SMALL_STATE(3324)] = 184317, + [SMALL_STATE(3325)] = 184339, + [SMALL_STATE(3326)] = 184361, + [SMALL_STATE(3327)] = 184383, + [SMALL_STATE(3328)] = 184405, + [SMALL_STATE(3329)] = 184427, + [SMALL_STATE(3330)] = 184449, + [SMALL_STATE(3331)] = 184471, + [SMALL_STATE(3332)] = 184493, + [SMALL_STATE(3333)] = 184515, + [SMALL_STATE(3334)] = 184537, + [SMALL_STATE(3335)] = 184559, + [SMALL_STATE(3336)] = 184581, + [SMALL_STATE(3337)] = 184603, + [SMALL_STATE(3338)] = 184625, + [SMALL_STATE(3339)] = 184647, + [SMALL_STATE(3340)] = 184669, + [SMALL_STATE(3341)] = 184691, + [SMALL_STATE(3342)] = 184713, + [SMALL_STATE(3343)] = 184735, + [SMALL_STATE(3344)] = 184757, + [SMALL_STATE(3345)] = 184779, + [SMALL_STATE(3346)] = 184801, + [SMALL_STATE(3347)] = 184823, + [SMALL_STATE(3348)] = 184845, + [SMALL_STATE(3349)] = 184867, + [SMALL_STATE(3350)] = 184889, + [SMALL_STATE(3351)] = 184911, + [SMALL_STATE(3352)] = 184933, + [SMALL_STATE(3353)] = 184955, + [SMALL_STATE(3354)] = 184977, + [SMALL_STATE(3355)] = 184999, + [SMALL_STATE(3356)] = 185021, + [SMALL_STATE(3357)] = 185043, + [SMALL_STATE(3358)] = 185065, + [SMALL_STATE(3359)] = 185087, + [SMALL_STATE(3360)] = 185109, + [SMALL_STATE(3361)] = 185131, + [SMALL_STATE(3362)] = 185153, + [SMALL_STATE(3363)] = 185175, + [SMALL_STATE(3364)] = 185197, + [SMALL_STATE(3365)] = 185219, + [SMALL_STATE(3366)] = 185241, + [SMALL_STATE(3367)] = 185263, + [SMALL_STATE(3368)] = 185285, + [SMALL_STATE(3369)] = 185307, + [SMALL_STATE(3370)] = 185329, + [SMALL_STATE(3371)] = 185351, + [SMALL_STATE(3372)] = 185373, + [SMALL_STATE(3373)] = 185395, + [SMALL_STATE(3374)] = 185417, + [SMALL_STATE(3375)] = 185439, + [SMALL_STATE(3376)] = 185461, + [SMALL_STATE(3377)] = 185483, + [SMALL_STATE(3378)] = 185505, + [SMALL_STATE(3379)] = 185527, + [SMALL_STATE(3380)] = 185549, + [SMALL_STATE(3381)] = 185571, + [SMALL_STATE(3382)] = 185593, + [SMALL_STATE(3383)] = 185615, + [SMALL_STATE(3384)] = 185637, + [SMALL_STATE(3385)] = 185659, + [SMALL_STATE(3386)] = 185681, + [SMALL_STATE(3387)] = 185703, + [SMALL_STATE(3388)] = 185725, + [SMALL_STATE(3389)] = 185747, + [SMALL_STATE(3390)] = 185769, + [SMALL_STATE(3391)] = 185791, + [SMALL_STATE(3392)] = 185813, + [SMALL_STATE(3393)] = 185835, + [SMALL_STATE(3394)] = 185857, + [SMALL_STATE(3395)] = 185879, + [SMALL_STATE(3396)] = 185901, + [SMALL_STATE(3397)] = 185923, + [SMALL_STATE(3398)] = 185945, + [SMALL_STATE(3399)] = 185967, + [SMALL_STATE(3400)] = 185989, + [SMALL_STATE(3401)] = 186011, + [SMALL_STATE(3402)] = 186033, + [SMALL_STATE(3403)] = 186055, + [SMALL_STATE(3404)] = 186077, + [SMALL_STATE(3405)] = 186099, + [SMALL_STATE(3406)] = 186121, + [SMALL_STATE(3407)] = 186143, + [SMALL_STATE(3408)] = 186159, + [SMALL_STATE(3409)] = 186175, + [SMALL_STATE(3410)] = 186197, + [SMALL_STATE(3411)] = 186219, + [SMALL_STATE(3412)] = 186241, + [SMALL_STATE(3413)] = 186263, + [SMALL_STATE(3414)] = 186285, + [SMALL_STATE(3415)] = 186307, + [SMALL_STATE(3416)] = 186329, + [SMALL_STATE(3417)] = 186351, + [SMALL_STATE(3418)] = 186373, + [SMALL_STATE(3419)] = 186395, + [SMALL_STATE(3420)] = 186417, + [SMALL_STATE(3421)] = 186439, + [SMALL_STATE(3422)] = 186461, + [SMALL_STATE(3423)] = 186483, + [SMALL_STATE(3424)] = 186505, + [SMALL_STATE(3425)] = 186533, + [SMALL_STATE(3426)] = 186552, + [SMALL_STATE(3427)] = 186571, + [SMALL_STATE(3428)] = 186590, + [SMALL_STATE(3429)] = 186609, + [SMALL_STATE(3430)] = 186628, + [SMALL_STATE(3431)] = 186647, + [SMALL_STATE(3432)] = 186666, + [SMALL_STATE(3433)] = 186685, + [SMALL_STATE(3434)] = 186704, + [SMALL_STATE(3435)] = 186723, + [SMALL_STATE(3436)] = 186742, + [SMALL_STATE(3437)] = 186761, + [SMALL_STATE(3438)] = 186780, + [SMALL_STATE(3439)] = 186799, + [SMALL_STATE(3440)] = 186818, + [SMALL_STATE(3441)] = 186837, + [SMALL_STATE(3442)] = 186856, + [SMALL_STATE(3443)] = 186875, + [SMALL_STATE(3444)] = 186894, + [SMALL_STATE(3445)] = 186913, + [SMALL_STATE(3446)] = 186932, + [SMALL_STATE(3447)] = 186951, + [SMALL_STATE(3448)] = 186970, + [SMALL_STATE(3449)] = 186989, + [SMALL_STATE(3450)] = 187008, + [SMALL_STATE(3451)] = 187027, + [SMALL_STATE(3452)] = 187046, + [SMALL_STATE(3453)] = 187065, + [SMALL_STATE(3454)] = 187084, + [SMALL_STATE(3455)] = 187103, + [SMALL_STATE(3456)] = 187122, + [SMALL_STATE(3457)] = 187141, + [SMALL_STATE(3458)] = 187160, + [SMALL_STATE(3459)] = 187179, + [SMALL_STATE(3460)] = 187198, + [SMALL_STATE(3461)] = 187217, + [SMALL_STATE(3462)] = 187236, + [SMALL_STATE(3463)] = 187255, + [SMALL_STATE(3464)] = 187274, + [SMALL_STATE(3465)] = 187293, + [SMALL_STATE(3466)] = 187312, + [SMALL_STATE(3467)] = 187331, + [SMALL_STATE(3468)] = 187350, + [SMALL_STATE(3469)] = 187369, + [SMALL_STATE(3470)] = 187388, + [SMALL_STATE(3471)] = 187407, + [SMALL_STATE(3472)] = 187426, + [SMALL_STATE(3473)] = 187445, + [SMALL_STATE(3474)] = 187464, + [SMALL_STATE(3475)] = 187483, + [SMALL_STATE(3476)] = 187502, + [SMALL_STATE(3477)] = 187521, + [SMALL_STATE(3478)] = 187540, + [SMALL_STATE(3479)] = 187559, + [SMALL_STATE(3480)] = 187578, + [SMALL_STATE(3481)] = 187597, + [SMALL_STATE(3482)] = 187616, + [SMALL_STATE(3483)] = 187635, + [SMALL_STATE(3484)] = 187654, + [SMALL_STATE(3485)] = 187673, + [SMALL_STATE(3486)] = 187692, + [SMALL_STATE(3487)] = 187711, + [SMALL_STATE(3488)] = 187730, + [SMALL_STATE(3489)] = 187749, + [SMALL_STATE(3490)] = 187768, + [SMALL_STATE(3491)] = 187787, + [SMALL_STATE(3492)] = 187806, + [SMALL_STATE(3493)] = 187825, + [SMALL_STATE(3494)] = 187844, + [SMALL_STATE(3495)] = 187863, + [SMALL_STATE(3496)] = 187882, + [SMALL_STATE(3497)] = 187901, + [SMALL_STATE(3498)] = 187920, + [SMALL_STATE(3499)] = 187939, + [SMALL_STATE(3500)] = 187958, + [SMALL_STATE(3501)] = 187977, + [SMALL_STATE(3502)] = 187996, + [SMALL_STATE(3503)] = 188015, + [SMALL_STATE(3504)] = 188034, + [SMALL_STATE(3505)] = 188053, + [SMALL_STATE(3506)] = 188072, + [SMALL_STATE(3507)] = 188091, + [SMALL_STATE(3508)] = 188110, + [SMALL_STATE(3509)] = 188129, + [SMALL_STATE(3510)] = 188148, + [SMALL_STATE(3511)] = 188167, + [SMALL_STATE(3512)] = 188186, + [SMALL_STATE(3513)] = 188205, + [SMALL_STATE(3514)] = 188224, + [SMALL_STATE(3515)] = 188243, + [SMALL_STATE(3516)] = 188262, + [SMALL_STATE(3517)] = 188281, + [SMALL_STATE(3518)] = 188300, + [SMALL_STATE(3519)] = 188319, + [SMALL_STATE(3520)] = 188338, + [SMALL_STATE(3521)] = 188357, + [SMALL_STATE(3522)] = 188376, + [SMALL_STATE(3523)] = 188395, + [SMALL_STATE(3524)] = 188414, + [SMALL_STATE(3525)] = 188433, + [SMALL_STATE(3526)] = 188452, + [SMALL_STATE(3527)] = 188471, + [SMALL_STATE(3528)] = 188490, + [SMALL_STATE(3529)] = 188509, + [SMALL_STATE(3530)] = 188528, + [SMALL_STATE(3531)] = 188547, + [SMALL_STATE(3532)] = 188566, + [SMALL_STATE(3533)] = 188585, + [SMALL_STATE(3534)] = 188604, + [SMALL_STATE(3535)] = 188623, + [SMALL_STATE(3536)] = 188642, + [SMALL_STATE(3537)] = 188661, + [SMALL_STATE(3538)] = 188680, + [SMALL_STATE(3539)] = 188699, + [SMALL_STATE(3540)] = 188718, + [SMALL_STATE(3541)] = 188737, + [SMALL_STATE(3542)] = 188756, + [SMALL_STATE(3543)] = 188775, + [SMALL_STATE(3544)] = 188794, + [SMALL_STATE(3545)] = 188813, + [SMALL_STATE(3546)] = 188832, + [SMALL_STATE(3547)] = 188851, + [SMALL_STATE(3548)] = 188870, + [SMALL_STATE(3549)] = 188889, + [SMALL_STATE(3550)] = 188908, + [SMALL_STATE(3551)] = 188927, + [SMALL_STATE(3552)] = 188946, + [SMALL_STATE(3553)] = 188965, + [SMALL_STATE(3554)] = 188984, + [SMALL_STATE(3555)] = 189003, + [SMALL_STATE(3556)] = 189022, + [SMALL_STATE(3557)] = 189041, + [SMALL_STATE(3558)] = 189060, + [SMALL_STATE(3559)] = 189079, + [SMALL_STATE(3560)] = 189098, + [SMALL_STATE(3561)] = 189117, + [SMALL_STATE(3562)] = 189136, + [SMALL_STATE(3563)] = 189155, + [SMALL_STATE(3564)] = 189174, + [SMALL_STATE(3565)] = 189193, + [SMALL_STATE(3566)] = 189212, + [SMALL_STATE(3567)] = 189231, + [SMALL_STATE(3568)] = 189250, + [SMALL_STATE(3569)] = 189269, + [SMALL_STATE(3570)] = 189288, + [SMALL_STATE(3571)] = 189307, + [SMALL_STATE(3572)] = 189326, + [SMALL_STATE(3573)] = 189345, + [SMALL_STATE(3574)] = 189364, + [SMALL_STATE(3575)] = 189383, + [SMALL_STATE(3576)] = 189402, + [SMALL_STATE(3577)] = 189421, + [SMALL_STATE(3578)] = 189440, + [SMALL_STATE(3579)] = 189459, + [SMALL_STATE(3580)] = 189478, + [SMALL_STATE(3581)] = 189497, + [SMALL_STATE(3582)] = 189516, + [SMALL_STATE(3583)] = 189535, + [SMALL_STATE(3584)] = 189554, + [SMALL_STATE(3585)] = 189573, + [SMALL_STATE(3586)] = 189592, + [SMALL_STATE(3587)] = 189611, + [SMALL_STATE(3588)] = 189630, + [SMALL_STATE(3589)] = 189649, + [SMALL_STATE(3590)] = 189668, + [SMALL_STATE(3591)] = 189687, + [SMALL_STATE(3592)] = 189706, + [SMALL_STATE(3593)] = 189725, + [SMALL_STATE(3594)] = 189744, + [SMALL_STATE(3595)] = 189763, + [SMALL_STATE(3596)] = 189782, + [SMALL_STATE(3597)] = 189801, + [SMALL_STATE(3598)] = 189820, + [SMALL_STATE(3599)] = 189839, + [SMALL_STATE(3600)] = 189858, + [SMALL_STATE(3601)] = 189877, + [SMALL_STATE(3602)] = 189896, + [SMALL_STATE(3603)] = 189915, + [SMALL_STATE(3604)] = 189934, + [SMALL_STATE(3605)] = 189953, + [SMALL_STATE(3606)] = 189972, + [SMALL_STATE(3607)] = 189991, + [SMALL_STATE(3608)] = 190010, + [SMALL_STATE(3609)] = 190029, + [SMALL_STATE(3610)] = 190048, + [SMALL_STATE(3611)] = 190067, + [SMALL_STATE(3612)] = 190086, + [SMALL_STATE(3613)] = 190105, + [SMALL_STATE(3614)] = 190124, + [SMALL_STATE(3615)] = 190143, + [SMALL_STATE(3616)] = 190162, + [SMALL_STATE(3617)] = 190181, + [SMALL_STATE(3618)] = 190200, + [SMALL_STATE(3619)] = 190219, + [SMALL_STATE(3620)] = 190238, + [SMALL_STATE(3621)] = 190257, + [SMALL_STATE(3622)] = 190276, + [SMALL_STATE(3623)] = 190295, + [SMALL_STATE(3624)] = 190314, + [SMALL_STATE(3625)] = 190333, + [SMALL_STATE(3626)] = 190352, + [SMALL_STATE(3627)] = 190371, + [SMALL_STATE(3628)] = 190390, + [SMALL_STATE(3629)] = 190409, + [SMALL_STATE(3630)] = 190428, + [SMALL_STATE(3631)] = 190447, + [SMALL_STATE(3632)] = 190466, + [SMALL_STATE(3633)] = 190485, + [SMALL_STATE(3634)] = 190504, + [SMALL_STATE(3635)] = 190523, + [SMALL_STATE(3636)] = 190542, + [SMALL_STATE(3637)] = 190561, + [SMALL_STATE(3638)] = 190580, + [SMALL_STATE(3639)] = 190599, + [SMALL_STATE(3640)] = 190618, + [SMALL_STATE(3641)] = 190637, + [SMALL_STATE(3642)] = 190656, + [SMALL_STATE(3643)] = 190675, + [SMALL_STATE(3644)] = 190694, + [SMALL_STATE(3645)] = 190713, + [SMALL_STATE(3646)] = 190732, + [SMALL_STATE(3647)] = 190751, + [SMALL_STATE(3648)] = 190770, + [SMALL_STATE(3649)] = 190789, + [SMALL_STATE(3650)] = 190808, + [SMALL_STATE(3651)] = 190827, + [SMALL_STATE(3652)] = 190846, + [SMALL_STATE(3653)] = 190865, + [SMALL_STATE(3654)] = 190884, + [SMALL_STATE(3655)] = 190903, + [SMALL_STATE(3656)] = 190922, + [SMALL_STATE(3657)] = 190941, + [SMALL_STATE(3658)] = 190960, + [SMALL_STATE(3659)] = 190979, + [SMALL_STATE(3660)] = 190998, + [SMALL_STATE(3661)] = 191017, + [SMALL_STATE(3662)] = 191036, + [SMALL_STATE(3663)] = 191055, + [SMALL_STATE(3664)] = 191074, + [SMALL_STATE(3665)] = 191093, + [SMALL_STATE(3666)] = 191112, + [SMALL_STATE(3667)] = 191131, + [SMALL_STATE(3668)] = 191150, + [SMALL_STATE(3669)] = 191169, + [SMALL_STATE(3670)] = 191188, + [SMALL_STATE(3671)] = 191207, + [SMALL_STATE(3672)] = 191226, + [SMALL_STATE(3673)] = 191245, + [SMALL_STATE(3674)] = 191264, + [SMALL_STATE(3675)] = 191283, + [SMALL_STATE(3676)] = 191302, + [SMALL_STATE(3677)] = 191321, + [SMALL_STATE(3678)] = 191340, + [SMALL_STATE(3679)] = 191359, + [SMALL_STATE(3680)] = 191378, + [SMALL_STATE(3681)] = 191397, + [SMALL_STATE(3682)] = 191416, + [SMALL_STATE(3683)] = 191435, + [SMALL_STATE(3684)] = 191454, + [SMALL_STATE(3685)] = 191473, + [SMALL_STATE(3686)] = 191492, + [SMALL_STATE(3687)] = 191511, + [SMALL_STATE(3688)] = 191530, + [SMALL_STATE(3689)] = 191549, + [SMALL_STATE(3690)] = 191568, + [SMALL_STATE(3691)] = 191587, + [SMALL_STATE(3692)] = 191606, + [SMALL_STATE(3693)] = 191625, + [SMALL_STATE(3694)] = 191644, + [SMALL_STATE(3695)] = 191663, + [SMALL_STATE(3696)] = 191682, + [SMALL_STATE(3697)] = 191701, + [SMALL_STATE(3698)] = 191720, + [SMALL_STATE(3699)] = 191739, + [SMALL_STATE(3700)] = 191758, + [SMALL_STATE(3701)] = 191777, + [SMALL_STATE(3702)] = 191796, + [SMALL_STATE(3703)] = 191815, + [SMALL_STATE(3704)] = 191834, + [SMALL_STATE(3705)] = 191853, + [SMALL_STATE(3706)] = 191872, + [SMALL_STATE(3707)] = 191891, + [SMALL_STATE(3708)] = 191910, + [SMALL_STATE(3709)] = 191929, + [SMALL_STATE(3710)] = 191948, + [SMALL_STATE(3711)] = 191967, + [SMALL_STATE(3712)] = 191986, + [SMALL_STATE(3713)] = 192005, + [SMALL_STATE(3714)] = 192024, + [SMALL_STATE(3715)] = 192043, + [SMALL_STATE(3716)] = 192062, + [SMALL_STATE(3717)] = 192081, + [SMALL_STATE(3718)] = 192100, + [SMALL_STATE(3719)] = 192119, + [SMALL_STATE(3720)] = 192138, + [SMALL_STATE(3721)] = 192157, + [SMALL_STATE(3722)] = 192176, + [SMALL_STATE(3723)] = 192195, + [SMALL_STATE(3724)] = 192214, + [SMALL_STATE(3725)] = 192233, + [SMALL_STATE(3726)] = 192252, + [SMALL_STATE(3727)] = 192271, + [SMALL_STATE(3728)] = 192290, + [SMALL_STATE(3729)] = 192309, + [SMALL_STATE(3730)] = 192328, + [SMALL_STATE(3731)] = 192347, + [SMALL_STATE(3732)] = 192366, + [SMALL_STATE(3733)] = 192385, + [SMALL_STATE(3734)] = 192404, + [SMALL_STATE(3735)] = 192423, + [SMALL_STATE(3736)] = 192442, + [SMALL_STATE(3737)] = 192461, + [SMALL_STATE(3738)] = 192480, + [SMALL_STATE(3739)] = 192499, + [SMALL_STATE(3740)] = 192518, + [SMALL_STATE(3741)] = 192537, + [SMALL_STATE(3742)] = 192556, + [SMALL_STATE(3743)] = 192575, + [SMALL_STATE(3744)] = 192594, + [SMALL_STATE(3745)] = 192613, + [SMALL_STATE(3746)] = 192632, + [SMALL_STATE(3747)] = 192651, + [SMALL_STATE(3748)] = 192670, + [SMALL_STATE(3749)] = 192689, + [SMALL_STATE(3750)] = 192708, + [SMALL_STATE(3751)] = 192727, + [SMALL_STATE(3752)] = 192746, + [SMALL_STATE(3753)] = 192765, + [SMALL_STATE(3754)] = 192784, + [SMALL_STATE(3755)] = 192803, + [SMALL_STATE(3756)] = 192822, + [SMALL_STATE(3757)] = 192841, + [SMALL_STATE(3758)] = 192860, + [SMALL_STATE(3759)] = 192879, + [SMALL_STATE(3760)] = 192898, + [SMALL_STATE(3761)] = 192917, + [SMALL_STATE(3762)] = 192936, + [SMALL_STATE(3763)] = 192955, + [SMALL_STATE(3764)] = 192974, + [SMALL_STATE(3765)] = 192993, + [SMALL_STATE(3766)] = 193012, + [SMALL_STATE(3767)] = 193031, + [SMALL_STATE(3768)] = 193050, + [SMALL_STATE(3769)] = 193069, + [SMALL_STATE(3770)] = 193088, + [SMALL_STATE(3771)] = 193107, + [SMALL_STATE(3772)] = 193126, + [SMALL_STATE(3773)] = 193145, + [SMALL_STATE(3774)] = 193164, + [SMALL_STATE(3775)] = 193183, + [SMALL_STATE(3776)] = 193202, + [SMALL_STATE(3777)] = 193221, + [SMALL_STATE(3778)] = 193240, + [SMALL_STATE(3779)] = 193259, + [SMALL_STATE(3780)] = 193278, + [SMALL_STATE(3781)] = 193297, + [SMALL_STATE(3782)] = 193316, + [SMALL_STATE(3783)] = 193335, + [SMALL_STATE(3784)] = 193354, + [SMALL_STATE(3785)] = 193373, + [SMALL_STATE(3786)] = 193392, + [SMALL_STATE(3787)] = 193411, + [SMALL_STATE(3788)] = 193430, + [SMALL_STATE(3789)] = 193449, + [SMALL_STATE(3790)] = 193468, + [SMALL_STATE(3791)] = 193487, + [SMALL_STATE(3792)] = 193506, + [SMALL_STATE(3793)] = 193525, + [SMALL_STATE(3794)] = 193544, + [SMALL_STATE(3795)] = 193563, + [SMALL_STATE(3796)] = 193582, + [SMALL_STATE(3797)] = 193601, + [SMALL_STATE(3798)] = 193620, + [SMALL_STATE(3799)] = 193639, + [SMALL_STATE(3800)] = 193658, + [SMALL_STATE(3801)] = 193677, + [SMALL_STATE(3802)] = 193696, + [SMALL_STATE(3803)] = 193715, + [SMALL_STATE(3804)] = 193734, + [SMALL_STATE(3805)] = 193753, + [SMALL_STATE(3806)] = 193772, + [SMALL_STATE(3807)] = 193791, + [SMALL_STATE(3808)] = 193810, + [SMALL_STATE(3809)] = 193829, + [SMALL_STATE(3810)] = 193848, + [SMALL_STATE(3811)] = 193867, + [SMALL_STATE(3812)] = 193886, + [SMALL_STATE(3813)] = 193905, + [SMALL_STATE(3814)] = 193924, + [SMALL_STATE(3815)] = 193943, + [SMALL_STATE(3816)] = 193962, + [SMALL_STATE(3817)] = 193981, + [SMALL_STATE(3818)] = 194000, + [SMALL_STATE(3819)] = 194019, + [SMALL_STATE(3820)] = 194038, + [SMALL_STATE(3821)] = 194057, + [SMALL_STATE(3822)] = 194076, + [SMALL_STATE(3823)] = 194095, + [SMALL_STATE(3824)] = 194114, + [SMALL_STATE(3825)] = 194133, + [SMALL_STATE(3826)] = 194152, + [SMALL_STATE(3827)] = 194171, + [SMALL_STATE(3828)] = 194190, + [SMALL_STATE(3829)] = 194209, + [SMALL_STATE(3830)] = 194228, + [SMALL_STATE(3831)] = 194247, + [SMALL_STATE(3832)] = 194266, + [SMALL_STATE(3833)] = 194285, + [SMALL_STATE(3834)] = 194304, + [SMALL_STATE(3835)] = 194323, + [SMALL_STATE(3836)] = 194342, + [SMALL_STATE(3837)] = 194361, + [SMALL_STATE(3838)] = 194380, + [SMALL_STATE(3839)] = 194399, + [SMALL_STATE(3840)] = 194418, + [SMALL_STATE(3841)] = 194437, + [SMALL_STATE(3842)] = 194456, + [SMALL_STATE(3843)] = 194475, + [SMALL_STATE(3844)] = 194494, + [SMALL_STATE(3845)] = 194513, + [SMALL_STATE(3846)] = 194532, + [SMALL_STATE(3847)] = 194551, + [SMALL_STATE(3848)] = 194570, + [SMALL_STATE(3849)] = 194589, + [SMALL_STATE(3850)] = 194608, + [SMALL_STATE(3851)] = 194627, + [SMALL_STATE(3852)] = 194646, + [SMALL_STATE(3853)] = 194665, + [SMALL_STATE(3854)] = 194684, + [SMALL_STATE(3855)] = 194703, + [SMALL_STATE(3856)] = 194722, + [SMALL_STATE(3857)] = 194741, + [SMALL_STATE(3858)] = 194760, + [SMALL_STATE(3859)] = 194779, + [SMALL_STATE(3860)] = 194798, + [SMALL_STATE(3861)] = 194817, + [SMALL_STATE(3862)] = 194836, + [SMALL_STATE(3863)] = 194855, + [SMALL_STATE(3864)] = 194874, + [SMALL_STATE(3865)] = 194893, + [SMALL_STATE(3866)] = 194912, + [SMALL_STATE(3867)] = 194931, + [SMALL_STATE(3868)] = 194950, + [SMALL_STATE(3869)] = 194969, + [SMALL_STATE(3870)] = 194988, + [SMALL_STATE(3871)] = 195007, + [SMALL_STATE(3872)] = 195026, + [SMALL_STATE(3873)] = 195045, + [SMALL_STATE(3874)] = 195064, + [SMALL_STATE(3875)] = 195083, + [SMALL_STATE(3876)] = 195102, + [SMALL_STATE(3877)] = 195121, + [SMALL_STATE(3878)] = 195140, + [SMALL_STATE(3879)] = 195159, + [SMALL_STATE(3880)] = 195178, + [SMALL_STATE(3881)] = 195197, + [SMALL_STATE(3882)] = 195216, + [SMALL_STATE(3883)] = 195235, + [SMALL_STATE(3884)] = 195254, + [SMALL_STATE(3885)] = 195273, + [SMALL_STATE(3886)] = 195291, + [SMALL_STATE(3887)] = 195309, + [SMALL_STATE(3888)] = 195327, + [SMALL_STATE(3889)] = 195345, + [SMALL_STATE(3890)] = 195363, + [SMALL_STATE(3891)] = 195381, + [SMALL_STATE(3892)] = 195399, + [SMALL_STATE(3893)] = 195417, + [SMALL_STATE(3894)] = 195435, + [SMALL_STATE(3895)] = 195453, + [SMALL_STATE(3896)] = 195471, + [SMALL_STATE(3897)] = 195489, + [SMALL_STATE(3898)] = 195507, + [SMALL_STATE(3899)] = 195525, + [SMALL_STATE(3900)] = 195543, + [SMALL_STATE(3901)] = 195561, + [SMALL_STATE(3902)] = 195579, + [SMALL_STATE(3903)] = 195597, + [SMALL_STATE(3904)] = 195615, + [SMALL_STATE(3905)] = 195633, + [SMALL_STATE(3906)] = 195651, + [SMALL_STATE(3907)] = 195669, + [SMALL_STATE(3908)] = 195687, + [SMALL_STATE(3909)] = 195705, + [SMALL_STATE(3910)] = 195723, + [SMALL_STATE(3911)] = 195741, + [SMALL_STATE(3912)] = 195759, + [SMALL_STATE(3913)] = 195777, + [SMALL_STATE(3914)] = 195795, + [SMALL_STATE(3915)] = 195813, + [SMALL_STATE(3916)] = 195831, + [SMALL_STATE(3917)] = 195849, + [SMALL_STATE(3918)] = 195867, + [SMALL_STATE(3919)] = 195885, + [SMALL_STATE(3920)] = 195903, + [SMALL_STATE(3921)] = 195921, + [SMALL_STATE(3922)] = 195939, + [SMALL_STATE(3923)] = 195957, + [SMALL_STATE(3924)] = 195975, + [SMALL_STATE(3925)] = 195993, + [SMALL_STATE(3926)] = 196011, + [SMALL_STATE(3927)] = 196029, + [SMALL_STATE(3928)] = 196047, + [SMALL_STATE(3929)] = 196065, + [SMALL_STATE(3930)] = 196083, + [SMALL_STATE(3931)] = 196101, + [SMALL_STATE(3932)] = 196119, + [SMALL_STATE(3933)] = 196137, + [SMALL_STATE(3934)] = 196155, + [SMALL_STATE(3935)] = 196173, + [SMALL_STATE(3936)] = 196191, + [SMALL_STATE(3937)] = 196209, + [SMALL_STATE(3938)] = 196227, + [SMALL_STATE(3939)] = 196245, + [SMALL_STATE(3940)] = 196263, + [SMALL_STATE(3941)] = 196281, + [SMALL_STATE(3942)] = 196299, + [SMALL_STATE(3943)] = 196317, + [SMALL_STATE(3944)] = 196335, + [SMALL_STATE(3945)] = 196353, + [SMALL_STATE(3946)] = 196371, + [SMALL_STATE(3947)] = 196389, + [SMALL_STATE(3948)] = 196407, + [SMALL_STATE(3949)] = 196425, + [SMALL_STATE(3950)] = 196443, + [SMALL_STATE(3951)] = 196461, + [SMALL_STATE(3952)] = 196479, + [SMALL_STATE(3953)] = 196497, + [SMALL_STATE(3954)] = 196515, + [SMALL_STATE(3955)] = 196533, + [SMALL_STATE(3956)] = 196551, + [SMALL_STATE(3957)] = 196569, + [SMALL_STATE(3958)] = 196587, + [SMALL_STATE(3959)] = 196605, + [SMALL_STATE(3960)] = 196623, + [SMALL_STATE(3961)] = 196641, + [SMALL_STATE(3962)] = 196659, + [SMALL_STATE(3963)] = 196677, + [SMALL_STATE(3964)] = 196695, + [SMALL_STATE(3965)] = 196713, + [SMALL_STATE(3966)] = 196731, + [SMALL_STATE(3967)] = 196749, + [SMALL_STATE(3968)] = 196767, + [SMALL_STATE(3969)] = 196785, + [SMALL_STATE(3970)] = 196803, + [SMALL_STATE(3971)] = 196821, + [SMALL_STATE(3972)] = 196839, + [SMALL_STATE(3973)] = 196857, + [SMALL_STATE(3974)] = 196875, + [SMALL_STATE(3975)] = 196893, + [SMALL_STATE(3976)] = 196911, + [SMALL_STATE(3977)] = 196929, + [SMALL_STATE(3978)] = 196947, + [SMALL_STATE(3979)] = 196965, + [SMALL_STATE(3980)] = 196983, + [SMALL_STATE(3981)] = 197001, + [SMALL_STATE(3982)] = 197019, + [SMALL_STATE(3983)] = 197037, + [SMALL_STATE(3984)] = 197055, + [SMALL_STATE(3985)] = 197073, + [SMALL_STATE(3986)] = 197091, + [SMALL_STATE(3987)] = 197109, + [SMALL_STATE(3988)] = 197127, + [SMALL_STATE(3989)] = 197145, + [SMALL_STATE(3990)] = 197163, + [SMALL_STATE(3991)] = 197181, + [SMALL_STATE(3992)] = 197199, + [SMALL_STATE(3993)] = 197217, + [SMALL_STATE(3994)] = 197235, + [SMALL_STATE(3995)] = 197253, + [SMALL_STATE(3996)] = 197271, + [SMALL_STATE(3997)] = 197289, + [SMALL_STATE(3998)] = 197307, + [SMALL_STATE(3999)] = 197327, + [SMALL_STATE(4000)] = 197340, + [SMALL_STATE(4001)] = 197353, + [SMALL_STATE(4002)] = 197366, + [SMALL_STATE(4003)] = 197385, + [SMALL_STATE(4004)] = 197402, + [SMALL_STATE(4005)] = 197415, + [SMALL_STATE(4006)] = 197428, + [SMALL_STATE(4007)] = 197441, + [SMALL_STATE(4008)] = 197454, + [SMALL_STATE(4009)] = 197471, + [SMALL_STATE(4010)] = 197484, + [SMALL_STATE(4011)] = 197497, + [SMALL_STATE(4012)] = 197510, + [SMALL_STATE(4013)] = 197522, + [SMALL_STATE(4014)] = 197532, + [SMALL_STATE(4015)] = 197542, + [SMALL_STATE(4016)] = 197552, + [SMALL_STATE(4017)] = 197562, + [SMALL_STATE(4018)] = 197572, + [SMALL_STATE(4019)] = 197582, + [SMALL_STATE(4020)] = 197592, + [SMALL_STATE(4021)] = 197602, + [SMALL_STATE(4022)] = 197612, + [SMALL_STATE(4023)] = 197625, + [SMALL_STATE(4024)] = 197638, + [SMALL_STATE(4025)] = 197651, + [SMALL_STATE(4026)] = 197664, + [SMALL_STATE(4027)] = 197677, + [SMALL_STATE(4028)] = 197690, + [SMALL_STATE(4029)] = 197703, + [SMALL_STATE(4030)] = 197716, + [SMALL_STATE(4031)] = 197729, + [SMALL_STATE(4032)] = 197742, + [SMALL_STATE(4033)] = 197755, + [SMALL_STATE(4034)] = 197768, + [SMALL_STATE(4035)] = 197781, + [SMALL_STATE(4036)] = 197794, + [SMALL_STATE(4037)] = 197807, + [SMALL_STATE(4038)] = 197820, + [SMALL_STATE(4039)] = 197833, + [SMALL_STATE(4040)] = 197846, + [SMALL_STATE(4041)] = 197859, + [SMALL_STATE(4042)] = 197872, + [SMALL_STATE(4043)] = 197885, + [SMALL_STATE(4044)] = 197898, + [SMALL_STATE(4045)] = 197911, + [SMALL_STATE(4046)] = 197924, + [SMALL_STATE(4047)] = 197937, + [SMALL_STATE(4048)] = 197950, + [SMALL_STATE(4049)] = 197963, + [SMALL_STATE(4050)] = 197976, + [SMALL_STATE(4051)] = 197989, + [SMALL_STATE(4052)] = 198002, + [SMALL_STATE(4053)] = 198015, + [SMALL_STATE(4054)] = 198028, + [SMALL_STATE(4055)] = 198041, + [SMALL_STATE(4056)] = 198054, + [SMALL_STATE(4057)] = 198067, + [SMALL_STATE(4058)] = 198080, + [SMALL_STATE(4059)] = 198093, + [SMALL_STATE(4060)] = 198106, + [SMALL_STATE(4061)] = 198119, + [SMALL_STATE(4062)] = 198132, + [SMALL_STATE(4063)] = 198145, + [SMALL_STATE(4064)] = 198158, + [SMALL_STATE(4065)] = 198171, + [SMALL_STATE(4066)] = 198184, + [SMALL_STATE(4067)] = 198197, + [SMALL_STATE(4068)] = 198210, + [SMALL_STATE(4069)] = 198223, + [SMALL_STATE(4070)] = 198236, + [SMALL_STATE(4071)] = 198249, + [SMALL_STATE(4072)] = 198262, + [SMALL_STATE(4073)] = 198275, + [SMALL_STATE(4074)] = 198288, + [SMALL_STATE(4075)] = 198301, + [SMALL_STATE(4076)] = 198314, + [SMALL_STATE(4077)] = 198327, + [SMALL_STATE(4078)] = 198340, + [SMALL_STATE(4079)] = 198353, + [SMALL_STATE(4080)] = 198366, + [SMALL_STATE(4081)] = 198379, + [SMALL_STATE(4082)] = 198392, + [SMALL_STATE(4083)] = 198405, + [SMALL_STATE(4084)] = 198418, + [SMALL_STATE(4085)] = 198431, + [SMALL_STATE(4086)] = 198444, + [SMALL_STATE(4087)] = 198457, + [SMALL_STATE(4088)] = 198470, + [SMALL_STATE(4089)] = 198483, + [SMALL_STATE(4090)] = 198496, + [SMALL_STATE(4091)] = 198509, + [SMALL_STATE(4092)] = 198522, + [SMALL_STATE(4093)] = 198535, + [SMALL_STATE(4094)] = 198548, + [SMALL_STATE(4095)] = 198561, + [SMALL_STATE(4096)] = 198574, + [SMALL_STATE(4097)] = 198587, + [SMALL_STATE(4098)] = 198597, + [SMALL_STATE(4099)] = 198607, + [SMALL_STATE(4100)] = 198617, + [SMALL_STATE(4101)] = 198627, + [SMALL_STATE(4102)] = 198637, + [SMALL_STATE(4103)] = 198647, + [SMALL_STATE(4104)] = 198657, + [SMALL_STATE(4105)] = 198667, + [SMALL_STATE(4106)] = 198677, + [SMALL_STATE(4107)] = 198687, + [SMALL_STATE(4108)] = 198697, + [SMALL_STATE(4109)] = 198707, + [SMALL_STATE(4110)] = 198717, + [SMALL_STATE(4111)] = 198727, + [SMALL_STATE(4112)] = 198737, + [SMALL_STATE(4113)] = 198747, + [SMALL_STATE(4114)] = 198757, + [SMALL_STATE(4115)] = 198767, + [SMALL_STATE(4116)] = 198777, + [SMALL_STATE(4117)] = 198787, + [SMALL_STATE(4118)] = 198797, + [SMALL_STATE(4119)] = 198807, + [SMALL_STATE(4120)] = 198814, + [SMALL_STATE(4121)] = 198821, + [SMALL_STATE(4122)] = 198828, + [SMALL_STATE(4123)] = 198835, + [SMALL_STATE(4124)] = 198842, + [SMALL_STATE(4125)] = 198849, + [SMALL_STATE(4126)] = 198856, + [SMALL_STATE(4127)] = 198863, + [SMALL_STATE(4128)] = 198870, + [SMALL_STATE(4129)] = 198877, + [SMALL_STATE(4130)] = 198884, + [SMALL_STATE(4131)] = 198891, + [SMALL_STATE(4132)] = 198898, + [SMALL_STATE(4133)] = 198905, + [SMALL_STATE(4134)] = 198912, + [SMALL_STATE(4135)] = 198919, + [SMALL_STATE(4136)] = 198926, + [SMALL_STATE(4137)] = 198933, + [SMALL_STATE(4138)] = 198940, + [SMALL_STATE(4139)] = 198947, + [SMALL_STATE(4140)] = 198954, + [SMALL_STATE(4141)] = 198961, + [SMALL_STATE(4142)] = 198968, + [SMALL_STATE(4143)] = 198975, + [SMALL_STATE(4144)] = 198982, + [SMALL_STATE(4145)] = 198989, + [SMALL_STATE(4146)] = 198996, + [SMALL_STATE(4147)] = 199003, + [SMALL_STATE(4148)] = 199010, + [SMALL_STATE(4149)] = 199017, + [SMALL_STATE(4150)] = 199024, + [SMALL_STATE(4151)] = 199031, + [SMALL_STATE(4152)] = 199038, + [SMALL_STATE(4153)] = 199045, + [SMALL_STATE(4154)] = 199052, + [SMALL_STATE(4155)] = 199059, + [SMALL_STATE(4156)] = 199066, + [SMALL_STATE(4157)] = 199073, + [SMALL_STATE(4158)] = 199080, + [SMALL_STATE(4159)] = 199087, + [SMALL_STATE(4160)] = 199094, + [SMALL_STATE(4161)] = 199101, + [SMALL_STATE(4162)] = 199108, + [SMALL_STATE(4163)] = 199115, + [SMALL_STATE(4164)] = 199122, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -171051,4033 +208761,5835 @@ 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(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), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [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(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(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(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(1075), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [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(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(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(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_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(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(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(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(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), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [59] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(990), + [63] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(638), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [73] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4029), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [83] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2758), + [87] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2757), + [91] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(279), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [114] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2663), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [131] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(990), + [135] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(638), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [141] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4035), + [145] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2758), + [149] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2757), + [153] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(279), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), + [160] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2664), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(15), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(638), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(4046), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(2758), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(2757), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(285), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(1119), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(13), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(4072), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 68), SHIFT(1116), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(990), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(638), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4054), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2758), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2757), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(285), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(1115), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(10), + [284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(638), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4066), + [294] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2758), + [298] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2757), + [302] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(279), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), + [309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2669), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [320] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(18), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [326] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(4030), + [330] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 66), REDUCE(sym_with_clause, 4, .production_id = 67), SHIFT(2665), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4049), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(1121), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [350] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(990), + [354] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(638), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [360] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4083), + [364] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2758), + [368] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2757), + [372] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(279), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), + [379] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2655), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [390] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2), + [394] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(638), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [400] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(4095), + [404] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2758), + [408] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2757), + [412] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(279), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), + [419] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2652), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [430] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(3), + [434] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(638), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [440] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(4074), + [444] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2758), + [448] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2757), + [452] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(279), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), + [459] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2650), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(990), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(638), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4071), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2758), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2757), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(285), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(1125), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [501] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(27), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [507] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(4061), + [511] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 87), REDUCE(sym_with_clause, 5, .production_id = 88), SHIFT(2654), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4059), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(1129), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(908), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(977), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(994), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1114), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4101), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3904), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1184), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2758), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2757), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(284), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3047), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3907), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3937), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(516), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(515), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(514), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(575), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(574), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1188), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4150), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(994), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(659), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3514), + [610] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(990), + [614] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(638), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [620] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(4043), + [624] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2758), + [628] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2757), + [632] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(279), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), + [639] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2651), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 70), REDUCE(sym_with_clause, 5, .production_id = 72), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [652] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4092), + [656] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 66), REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2661), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [664] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(34), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [670] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(4084), + [674] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 84), REDUCE(sym_with_clause, 5, .production_id = 86), SHIFT(2673), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [682] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(990), + [686] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(638), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [692] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4082), + [696] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2758), + [700] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2757), + [704] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(279), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), + [711] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2660), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 68), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 68), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(30), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(638), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(4058), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(2758), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(2757), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(285), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 89), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), SHIFT(1131), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 89), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [793] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(35), + [797] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(638), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [803] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(4044), + [807] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2758), + [811] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2757), + [815] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(279), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), + [822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2658), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(9), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(638), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(4034), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(2758), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(2757), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(285), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(1112), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(990), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(638), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(4026), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2758), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2757), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(285), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(1092), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [895] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(41), + [899] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(638), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [905] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(4027), + [909] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2758), + [913] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2757), + [917] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(279), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), + [924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), SHIFT(2653), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 54), REDUCE(sym_with_clause, 3, .production_id = 55), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [937] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4057), + [941] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 87), REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2662), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [949] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(20), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [955] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(4086), + [959] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 107), REDUCE(sym_with_clause, 6, .production_id = 109), SHIFT(2671), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [967] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(39), + [971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(638), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [977] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(4089), + [981] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2758), + [985] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2757), + [989] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(279), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), + [996] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), SHIFT(2656), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 111), REDUCE(sym_with_clause, 6, .production_id = 112), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(990), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(638), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(4073), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2758), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2757), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(285), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(1044), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1038] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(17), + [1042] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(638), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [1048] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(4087), + [1052] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2758), + [1056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2757), + [1060] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(279), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), + [1067] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), SHIFT(2657), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 70), REDUCE(sym_with_clause, 4, .production_id = 72), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3, .production_id = 52), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3, .production_id = 52), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(6), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(4024), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 52), SHIFT(1089), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1099] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4048), + [1103] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 84), REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2649), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1113] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4069), + [1117] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 107), REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2659), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [1125] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(990), + [1129] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(638), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1135] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(4094), + [1139] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2758), + [1143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2757), + [1147] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(279), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), + [1154] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2668), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 128), REDUCE(sym_with_clause, 8, .production_id = 130), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 40), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 40), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(25), + [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(638), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(4040), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(2758), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(2757), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(285), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, .production_id = 40), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), SHIFT(1128), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 2, .production_id = 40), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(990), + [1204] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(638), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1210] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(4079), + [1214] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2758), + [1218] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2757), + [1222] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(279), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), + [1229] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2670), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 111), REDUCE(sym_with_clause, 7, .production_id = 112), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [1240] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(36), + [1244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(638), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1250] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(4068), + [1254] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2758), + [1258] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2757), + [1262] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(279), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), + [1269] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), SHIFT(2672), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 128), REDUCE(sym_with_clause, 7, .production_id = 130), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1280] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(990), + [1284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(638), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(4042), + [1294] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2758), + [1298] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2757), + [1302] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(279), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), + [1309] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2666), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 54), REDUCE(sym_with_clause, 4, .production_id = 55), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(204), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(631), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(4097), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2758), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2757), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(279), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(2496), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 67), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(995), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(631), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(4097), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2758), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2757), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(279), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 68), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), SHIFT(2496), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 68), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(995), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(631), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(4097), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2758), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2757), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(279), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 130), + [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), SHIFT(2496), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 12, .production_id = 130), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(995), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(631), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(4097), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2758), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2757), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(279), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(2496), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 89), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(995), + [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(631), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(4097), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2758), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2757), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(279), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(2496), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 109), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(116), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(631), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(4097), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2758), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2757), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(279), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(2496), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 40), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(995), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(631), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(4097), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2758), + [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2757), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(279), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 72), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), SHIFT(2496), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 72), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(111), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(631), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(4097), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2758), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2757), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(279), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 55), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), SHIFT(2496), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 55), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(995), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 40), SHIFT(108), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(92), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(91), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(995), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(631), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(4097), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2758), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2757), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(279), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(2496), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 86), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(181), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(89), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(631), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(4097), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2758), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2757), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(279), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(2496), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 88), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(995), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(631), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(4097), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2758), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2757), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(279), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 86), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), SHIFT(2496), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 86), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(995), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(995), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(631), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(4097), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2758), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2757), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(279), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 88), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), SHIFT(2496), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 88), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(995), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(631), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(4097), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2758), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2757), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(279), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(2496), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 109), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(76), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(631), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(4097), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(279), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(2496), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(71), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 52), SHIFT(123), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(129), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(631), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(4097), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2758), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2757), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(279), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), + [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(2496), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 52), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 109), SHIFT(66), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(995), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(631), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(4097), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2758), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2757), + [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(279), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(2496), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 55), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(995), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 88), SHIFT(63), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(135), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(631), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(4097), + [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2758), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2757), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(279), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(2496), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 67), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(193), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(148), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 86), SHIFT(61), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(995), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(631), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(4097), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2758), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2757), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(279), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 67), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), SHIFT(2496), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 67), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(995), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(631), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(4097), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2758), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2757), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(279), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(2496), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 86), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(54), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(154), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(631), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(4097), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(279), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(2496), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(248), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(995), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(631), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(4097), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2758), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2757), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(279), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 52), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), SHIFT(2496), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 52), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(191), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(631), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(4097), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2758), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2757), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(279), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(2496), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 67), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(995), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(48), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(631), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(4097), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2758), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2757), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(279), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(2496), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 72), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 72), SHIFT(995), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 68), SHIFT(171), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 109), SHIFT(237), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(995), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(631), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(4097), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2758), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2757), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(279), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(2496), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 112), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(164), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(631), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(4097), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2758), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2757), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(279), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(2496), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 130), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(995), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(631), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(4097), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2758), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2757), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(279), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 55), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), SHIFT(2496), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 55), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(995), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(631), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(4097), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2758), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2757), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(279), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(2496), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 40), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(194), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(198), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(631), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(4097), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2758), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2757), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(279), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(2496), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 55), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(995), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 55), SHIFT(202), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(152), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(631), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(4097), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2758), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2757), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(279), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 130), + [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), SHIFT(2496), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 130), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(995), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(631), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(4097), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2758), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2757), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(279), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(2496), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 89), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 40), SHIFT(205), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(211), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(631), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(4097), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2758), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2757), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(279), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 72), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), SHIFT(2496), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 72), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(178), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(220), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(631), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(4097), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2758), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2757), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(279), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(2496), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 112), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(995), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(213), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 67), SHIFT(224), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 112), SHIFT(246), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 112), SHIFT(228), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 52), SHIFT(235), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(995), + [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(631), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(4097), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2758), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2757), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(279), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 89), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), SHIFT(2496), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 89), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(995), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(631), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(4097), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2758), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2757), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(279), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(2496), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 52), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(251), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(252), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 89), SHIFT(45), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(46), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(631), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(4097), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2758), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2757), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(279), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(2496), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 109), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(995), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(222), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(995), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(916), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(742), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(4098), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2758), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2757), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(287), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(1485), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(57), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(119), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(631), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(4097), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2758), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2757), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(279), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(2496), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 9, .production_id = 112), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(58), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(631), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(4097), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2758), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2757), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(279), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(2496), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 68), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(995), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(995), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(631), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(4097), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2758), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2757), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(279), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(2496), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 8, .production_id = 88), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(257), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(62), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(64), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(65), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(263), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(631), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(4097), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2758), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2757), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(279), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(2496), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 86), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(995), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(267), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(631), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(4097), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2758), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2757), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(279), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(2496), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 68), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(995), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(266), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(631), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(4097), + [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2758), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2757), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(279), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), + [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(2496), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 88), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 109), SHIFT(74), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(995), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(631), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(4097), + [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2758), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2757), + [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(279), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(2496), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 10, .production_id = 130), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(259), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 68), SHIFT(43), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(253), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), SHIFT(158), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 130), SHIFT(236), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 89), SHIFT(128), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(79), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(50), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(631), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(4097), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(279), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 3, .production_id = 40), SHIFT(2496), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(250), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 88), SHIFT(81), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 88), SHIFT(243), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(84), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 68), SHIFT(239), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 86), SHIFT(85), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 67), SHIFT(86), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(87), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(631), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(4097), + [3251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2758), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2757), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(279), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(2496), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 86), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(995), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(95), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(232), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(631), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(4097), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(279), + [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 89), SHIFT(2496), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(995), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(631), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(4097), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2758), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2757), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(279), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 109), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), SHIFT(2496), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 109), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(995), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(631), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(4097), + [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2758), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2757), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(279), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(2496), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 40), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(96), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(631), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(4097), + [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2758), + [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2757), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(279), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(2496), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 52), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(995), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(995), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(631), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(4097), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2758), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2757), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(279), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), + [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(2496), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 67), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(995), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(631), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(4097), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2758), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2757), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(279), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(2496), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 55), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(75), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 55), SHIFT(256), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(98), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(99), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 40), SHIFT(219), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(410), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(742), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(4098), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2758), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2757), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(287), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(1485), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(217), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(631), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(4097), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2758), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2757), + [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(279), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(2496), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 6, .production_id = 72), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(995), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(631), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(4097), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2758), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2757), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(279), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(2496), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 72), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(995), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 72), SHIFT(210), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(209), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(101), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 72), SHIFT(106), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(829), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(742), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(4098), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2758), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(2757), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 2), SHIFT(287), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 2), SHIFT(1485), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 2), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(995), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(631), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(4097), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2758), + [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2757), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(279), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 40), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), SHIFT(2496), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 40), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(995), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 55), SHIFT(107), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(44), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(631), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(4097), + [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2758), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2757), + [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(279), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(2496), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 130), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(114), + [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(631), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(4097), + [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2758), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2757), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(279), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(2496), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 89), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 67), SHIFT(197), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 52), SHIFT(196), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(121), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(631), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(4097), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2758), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2757), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(279), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), SHIFT(2496), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(995), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 89), SHIFT(133), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 112), SHIFT(104), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 130), SHIFT(995), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(137), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(631), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(4097), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2758), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2757), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(279), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(2496), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 109), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(995), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(631), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(4097), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2758), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2757), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(279), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(2496), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 68), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(142), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 86), SHIFT(189), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(143), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(631), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(4097), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2758), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2757), + [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(279), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(2496), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 7, .production_id = 88), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(995), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(147), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(149), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(995), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(631), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(4097), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2758), + [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2757), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(279), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 112), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), SHIFT(2496), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 11, .production_id = 112), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(187), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 67), SHIFT(186), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), SHIFT(156), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 52), SHIFT(184), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(166), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(183), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(167), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 86), SHIFT(176), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 88), SHIFT(173), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 68), SHIFT(174), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(289), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(742), + [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(988), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1978), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1873), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4116), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4116), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3936), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1884), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2758), + [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2757), + [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(282), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3030), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3943), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3946), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(453), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(457), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(517), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(518), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(521), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1768), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(4155), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1978), + [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(538), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3775), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(375), + [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(742), + [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(988), + [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1991), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1873), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4116), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4116), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3936), + [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1884), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2758), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2757), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(282), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3030), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3943), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3946), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(453), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(457), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(517), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(518), + [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(521), + [4648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1768), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4155), + [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1991), + [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(538), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3775), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(990), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(638), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), SHIFT_REPEAT(993), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), SHIFT_REPEAT(631), + [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), + [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 40), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 40), + [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 40), + [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(991), + [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(631), + [7433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [7437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(995), + [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(631), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [7463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 30), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 30), + [7481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 30), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 30), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 28), + [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 28), + [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 49), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 49), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 51), + [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 51), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), + [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [7503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 51), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 51), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 56), + [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 56), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 61), + [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 61), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 62), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 63), + [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 63), + [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 64), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 64), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 73), + [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 73), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 61), + [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 61), + [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 78), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 79), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 80), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 80), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 81), + [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 81), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 94), + [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 94), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 78), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 1), + [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 1), + [7621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4088), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 79), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 98), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 36), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 36), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 32), + [7656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 32), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), + [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 99), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 48), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 48), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 81), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 81), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 31), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 31), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 100), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 101), + [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 101), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 33), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 33), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 98), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 33), + [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 33), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 99), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 117), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 118), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 119), + [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 119), + [7756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4067), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 34), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 34), + [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4093), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 48), + [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 48), + [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 117), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 118), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 119), + [7780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 119), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 34), + [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 34), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 134), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 134), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 48), + [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 48), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 134), + [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 134), + [7798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4047), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 34), + [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 34), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [7807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4091), + [7810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4077), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 47), + [7815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 47), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 47), + [7819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 47), + [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4064), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 46), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 46), + [7828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4085), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 44), + [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 44), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 41), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 41), + [7843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4041), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 35), + [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 35), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 41), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 41), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4031), + [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4062), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), + [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), + [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4090), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1147), + [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(673), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(2746), + [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(550), + [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(2881), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 83), SHIFT(4146), + [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 83), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2746), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(550), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(2881), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 82), SHIFT(4146), + [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 82), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2746), + [7912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(550), + [7915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(2881), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 102), SHIFT(4146), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 102), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(2746), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(550), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(2881), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 103), SHIFT(4146), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 103), + [7941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(2746), + [7944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(550), + [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(2881), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), + [7952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 120), SHIFT(4146), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 120), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(2746), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(550), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(2881), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 90), SHIFT(4146), + [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 90), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(2746), + [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(550), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(2881), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 110), SHIFT(4146), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 110), + [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(2746), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(550), + [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(2881), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), + [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 53), SHIFT(4146), + [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 53), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(2746), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(550), + [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(2881), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), + [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 141), SHIFT(4146), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 141), + [8021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2746), + [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(550), + [8027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(2881), + [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 65), SHIFT(4146), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 65), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(2746), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(550), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(2881), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 127), SHIFT(4146), + [8051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 127), + [8053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(2746), + [8056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(550), + [8059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(2881), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), + [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 69), SHIFT(4146), + [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 69), + [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2746), + [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(550), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2881), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(4146), + [8083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2038), + [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2038), + [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1345), + [8266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(942), + [8269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2848), + [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2755), + [8275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2759), + [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(279), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(4156), + [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2036), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(891), + [8292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), + [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(895), + [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(306), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(900), + [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(901), + [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(902), + [8310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2679), + [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(903), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 40), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 40), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 52), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 52), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 68), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 68), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1967), + [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(742), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [8510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 95), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [8526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 74), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 27), + [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 27), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 43), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 43), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 96), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 97), + [8556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 97), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 27), + [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 27), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 57), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [8572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 75), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 116), + [8578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 116), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [8582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 76), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 77), + [8586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 77), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 59), + [8590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 59), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 58), + [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 2), + [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 2), + [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), + [8602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), + [8604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3107), + [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(871), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(4119), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), + [8615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(4129), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), + [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), + [8630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 2), + [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 2), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), + [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(3105), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(871), + [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(4132), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), + [8655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 40), SHIFT(4143), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2426), + [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(942), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2456), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(942), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), + [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2139), + [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(942), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), + [8684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2088), + [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(942), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), + [8692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2133), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2455), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(2145), + [8701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), SHIFT(942), + [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 163), + [8706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2453), + [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(2145), + [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), SHIFT(942), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 162), + [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2452), + [8720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(942), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), + [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(2145), + [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), SHIFT(942), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 161), + [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2195), + [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(942), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), + [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2119), + [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(942), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), + [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2449), + [8752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2448), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2357), + [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(942), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(2145), + [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), SHIFT(942), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 173), + [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(2145), + [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), SHIFT(942), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 129), + [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 143), SHIFT(2332), + [8782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 170), SHIFT(2445), + [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 169), SHIFT(2317), + [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(2145), + [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), SHIFT(942), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 168), + [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2443), + [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(942), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), + [8804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2154), + [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(2145), + [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), SHIFT(942), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 128), + [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(2145), + [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), SHIFT(942), + [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 160), + [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(2145), + [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), SHIFT(942), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 159), + [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(2145), + [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), SHIFT(942), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 150), + [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(2145), + [8842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), SHIFT(942), + [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 142), + [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2438), + [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(942), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2435), + [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2433), + [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(2145), + [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), SHIFT(942), + [8867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 149), + [8869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2428), + [8872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(942), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), + [8877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(2145), + [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), SHIFT(942), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 148), + [8885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), SHIFT(2417), + [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), SHIFT(942), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 167), + [8893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(2145), + [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), SHIFT(942), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 158), + [8901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(2145), + [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), SHIFT(942), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 157), + [8909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(2145), + [8912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), SHIFT(942), + [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 156), + [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2115), + [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2333), + [8923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(942), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(2145), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), SHIFT(942), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 174), + [8936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2327), + [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2111), + [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(942), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), + [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(2145), + [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), SHIFT(942), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 144), + [8955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 166), SHIFT(2322), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(2145), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), SHIFT(942), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 154), + [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(2145), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), SHIFT(942), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 175), + [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2319), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(942), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2194), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2314), + [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(942), + [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), + [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(2145), + [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), SHIFT(942), + [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 155), + [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(2145), + [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), SHIFT(942), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 176), + [9009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 156), SHIFT(2105), + [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2309), + [9015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(2145), + [9018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), SHIFT(942), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 145), + [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2203), + [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 165), SHIFT(2200), + [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 164), SHIFT(2199), + [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(2145), + [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), SHIFT(942), + [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), + [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2167), + [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), SHIFT(2136), + [9046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), SHIFT(942), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 177), + [9051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), SHIFT(2145), + [9054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), SHIFT(942), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 14, .production_id = 177), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(2145), + [9062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), SHIFT(942), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), + [9067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2253), + [9070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2263), + [9073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(942), + [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), + [9078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2277), + [9081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(2145), + [9084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), SHIFT(942), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2337), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(942), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), + [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2145), + [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(942), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2348), + [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2380), + [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2406), + [9112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2408), + [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 140), SHIFT(2410), + [9118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2432), + [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 176), SHIFT(2122), + [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 154), SHIFT(2424), + [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2439), + [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2447), + [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2454), + [9136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2458), + [9139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(2145), + [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), SHIFT(942), + [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 140), + [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 139), SHIFT(2462), + [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(2069), + [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), SHIFT(942), + [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 129), + [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2472), + [9161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 138), SHIFT(2475), + [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(2145), + [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), SHIFT(942), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), + [9172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2477), + [9175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(942), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), + [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2422), + [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2481), + [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2485), + [9189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(2145), + [9192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), SHIFT(942), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), + [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2486), + [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(942), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), + [9205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2487), + [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2488), + [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(942), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), + [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(2145), + [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), SHIFT(942), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), + [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2491), + [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2493), + [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2494), + [9233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2495), + [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(2145), + [9239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), SHIFT(942), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(2145), + [9247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), SHIFT(942), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 164), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(2145), + [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), SHIFT(942), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 143), + [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(2113), + [9263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), SHIFT(942), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 144), + [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2099), + [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(942), + [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(2145), + [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), SHIFT(942), + [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 165), + [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(2145), + [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), SHIFT(942), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 131), + [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(2145), + [9295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), SHIFT(942), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 132), + [9300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2098), + [9303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2097), + [9306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(2145), + [9309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), SHIFT(942), + [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), + [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2483), + [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(942), + [9320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), + [9322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2095), + [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(942), + [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), + [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(2145), + [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), SHIFT(942), + [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), + [9338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(2145), + [9341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), SHIFT(942), + [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), + [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2509), + [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2094), + [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(942), + [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), + [9357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2506), + [9360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(942), + [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), + [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(2145), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), SHIFT(942), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 104), + [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2521), + [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(2145), + [9379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), SHIFT(942), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2526), + [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(942), + [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), + [9392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2093), + [9395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2533), + [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2540), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2547), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2549), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), SHIFT(2145), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), SHIFT(942), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 115), + [9415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2479), + [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(942), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), + [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(2104), + [9426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), SHIFT(942), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 157), + [9431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2473), + [9434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 133), SHIFT(2517), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(2145), + [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), SHIFT(942), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), + [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2434), + [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(942), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2431), + [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2427), + [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(942), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), + [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(2145), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), SHIFT(942), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 114), + [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2411), + [9475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2331), + [9478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 132), SHIFT(2202), + [9481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 131), SHIFT(2201), + [9484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2418), + [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2091), + [9490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(2082), + [9493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), SHIFT(942), + [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 128), + [9498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(2145), + [9501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), SHIFT(942), + [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 147), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2137), + [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(942), + [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), + [9514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2101), + [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(942), + [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2220), + [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(942), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2141), + [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(942), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), + [9538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2143), + [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(942), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), + [9546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2087), + [9549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(2145), + [9552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), SHIFT(942), + [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 138), + [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(2145), + [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), SHIFT(942), + [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2147), + [9568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2149), + [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(2145), + [9574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), SHIFT(942), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [9579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2152), + [9582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2399), + [9585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(942), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), + [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 126), SHIFT(2156), + [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2160), + [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2398), + [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2162), + [9602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 159), SHIFT(2086), + [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 125), SHIFT(2166), + [9608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2396), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(942), + [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), + [9616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2132), + [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 124), SHIFT(2172), + [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2173), + [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2407), + [9628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 123), SHIFT(2177), + [9631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2179), + [9634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2182), + [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2184), + [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2186), + [9643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 122), SHIFT(2189), + [9646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2191), + [9649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 121), SHIFT(2192), + [9652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2085), + [9655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2463), + [9658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(942), + [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), + [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2084), + [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2465), + [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 160), SHIFT(2083), + [9672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 171), SHIFT(2466), + [9675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2121), + [9678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(942), + [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2102), + [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(2145), + [9689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), SHIFT(942), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 169), + [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(2145), + [9697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), SHIFT(942), + [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 151), + [9702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(2468), + [9705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), SHIFT(942), + [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 172), + [9710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(2145), + [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), SHIFT(942), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 152), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(2145), + [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), SHIFT(942), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 166), + [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2469), + [9729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(942), + [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2484), + [9737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2078), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(942), + [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), + [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2131), + [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2125), + [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2077), + [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2076), + [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(2145), + [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), SHIFT(942), + [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 139), + [9765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2389), + [9768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2214), + [9771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(942), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2074), + [9779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(942), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), + [9784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(2145), + [9787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), SHIFT(942), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 153), + [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2218), + [9795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(942), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), + [9800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2073), + [9803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(942), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), + [9808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2072), + [9811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2386), + [9814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(2145), + [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), SHIFT(942), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 85), + [9822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2224), + [9825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 158), SHIFT(2103), + [9828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2226), + [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(2145), + [9834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), SHIFT(942), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 84), + [9839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2229), + [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(2230), + [9845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(942), + [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), + [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2068), + [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), SHIFT(2145), + [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), SHIFT(942), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 93), + [9861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 115), SHIFT(2234), + [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2236), + [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(942), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), + [9872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(2145), + [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), SHIFT(942), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 91), + [9880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2239), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(2145), + [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), SHIFT(942), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [9891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2241), + [9894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(942), + [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), + [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2243), + [9902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 114), SHIFT(2246), + [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2248), + [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 113), SHIFT(2249), + [9911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 173), SHIFT(2067), + [9914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2384), + [9917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2264), + [9920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(942), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2126), + [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(942), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), + [9933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2268), + [9936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(942), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), + [9941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2062), + [9944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2383), + [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 108), SHIFT(2279), + [9950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2061), + [9953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 107), SHIFT(2283), + [9956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2060), + [9959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 106), SHIFT(2289), + [9962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 161), SHIFT(2058), + [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(2145), + [9968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), SHIFT(942), + [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 146), + [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2293), + [9976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2295), + [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 105), SHIFT(2299), + [9982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 162), SHIFT(2056), + [9985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2301), + [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 104), SHIFT(2304), + [9991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2055), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2054), + [9997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 155), SHIFT(2129), + [10000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2421), + [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2376), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 145), SHIFT(2420), + [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(2145), + [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), SHIFT(942), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 167), + [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2052), + [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 163), SHIFT(2197), + [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2288), + [10026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(2522), + [10029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), SHIFT(942), + [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 70), + [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(2535), + [10037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), SHIFT(942), + [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 71), + [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 153), SHIFT(2344), + [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(2394), + [10048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), SHIFT(942), + [10051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 146), + [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 142), SHIFT(2164), + [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 168), SHIFT(2079), + [10059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2341), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(2145), + [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), SHIFT(942), + [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 170), + [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2340), + [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2338), + [10076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2108), + [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(942), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), + [10084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2329), + [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2325), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 152), SHIFT(2321), + [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 174), SHIFT(2109), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(2145), + [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), SHIFT(942), + [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 171), + [10104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2367), + [10107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(942), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), + [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(2116), + [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), SHIFT(942), + [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 175), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(2145), + [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), SHIFT(942), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 172), + [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 151), SHIFT(2318), + [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2361), + [10134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), SHIFT(2145), + [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), SHIFT(942), + [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 133), + [10142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2336), + [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2316), + [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2306), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 147), SHIFT(2255), + [10154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 150), SHIFT(2291), + [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2273), + [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2272), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 148), SHIFT(2266), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 149), SHIFT(2287), + [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2404), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(942), + [10179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), + [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2400), + [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(942), + [10187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2260), + [10192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2251), + [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 85), SHIFT(2350), + [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 137), SHIFT(2213), + [10201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2210), + [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2209), + [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2374), + [10210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(942), + [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), + [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(2145), + [10218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), SHIFT(942), + [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 70), + [10223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2371), + [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2208), + [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 84), SHIFT(2354), + [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2204), + [10235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), SHIFT(2359), + [10238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), SHIFT(942), + [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 93), + [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2369), + [10246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(942), + [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), + [10251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(2145), + [10254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), SHIFT(942), + [10257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 71), + [10259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 92), SHIFT(2365), + [10262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2193), + [10265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 136), SHIFT(2297), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 135), SHIFT(2207), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 91), SHIFT(2363), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [10276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4053), + [10279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4032), + [10282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4070), + [10285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4028), + [10288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4063), + [10291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4055), + [10294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4025), + [10297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4065), + [10300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4050), + [10303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4022), + [10306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4045), + [10309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4075), + [10312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4060), + [10315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4033), + [10318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4078), + [10321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4096), + [10324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4023), + [10327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4052), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), + [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), + [10334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4051), + [10337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4081), + [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4039), + [10343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4036), + [10346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4037), + [10349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(4056), + [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 131), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 68), + [10356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 146), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 91), + [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 135), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 89), + [10376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 104), + [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 121), + [10380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 113), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 89), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 89), + [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), + [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 68), + [10392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 40), + [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 68), + [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 68), + [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), + [10400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 70), + [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 40), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 89), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2), + [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), + [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 84), + [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), + [10416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 40), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 40), + [10420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 149), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2747), + [10427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(550), + [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), + [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [10472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_package_lit, 1), SHIFT(2850), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [10769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2853), + [10772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(953), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [10787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [10793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [10811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [10823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [10825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2758), + [10828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2757), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [10835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 28), + [10839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 28), + [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [10843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [10847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [10851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [10855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [10859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [10865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [10893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [10897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2902), + [10900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(779), + [10903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2903), + [10906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(887), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), + [10911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), + [10923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), + [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [10927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [10933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2984), + [10936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(823), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2755), + [10948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2759), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [10983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3079), + [10986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(910), + [10989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2976), + [10992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [10994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(4149), + [10997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3085), + [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [11002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(3094), + [11005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(871), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [12318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [12320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [12408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [12444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [12520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [12602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [12670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [12686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [12744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), + [12746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3902), + [12749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1766), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [12914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 37), + [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 37), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [12928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [12930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [12932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(4012), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [12941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [12943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [12945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 50), + [12947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 39), + [12949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), + [12951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [12953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), + [12955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [12957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), + [12959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [12961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), + [12963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [12969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [12973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [12977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [12981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [12989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [12993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [12995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [12997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [12999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(4038), + [13002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [13004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [13006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [13008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [13012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [13014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [13016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [13018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [13020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [13022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [13024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [13026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [13028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [13030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [13032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [13034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [13042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [13048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [13056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [13216] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 31), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index a2d6a3190..a3b6cedeb 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -612,9 +612,17 @@ Chars ================================================================================ #\? +#\, +#\- +#\: +#\/ -------------------------------------------------------------------------------- (source + (char_lit) + (char_lit) + (char_lit) + (char_lit) (char_lit)) ================================================================================ @@ -767,23 +775,45 @@ Multiple gaps in Loop (sym_lit))))))))))))) ================================================================================ -Unquoting in defun +Unquoting in defun 2 ================================================================================ - -(defun ,foo ,arguments - ) - + `((defmacro ,name)) + `((defmacro ,name)) + `((defmacro ,name) + ,(function-location (macro-function name))) -------------------------------------------------------------------------------- (source - (list_lit - (defun - (defun_header - (defun_keyword) - (unquoting_lit - (sym_lit)) - (unquoting_lit - (sym_lit)))))) + (syn_quoting_lit + (list_lit + (list_lit + (defun + (defun_header + (defun_keyword) + (unquoting_lit + (sym_lit))))))) + (syn_quoting_lit + (list_lit + (list_lit + (defun + (defun_header + (defun_keyword) + (unquoting_lit + (sym_lit))))))) + (syn_quoting_lit + (list_lit + (list_lit + (defun + (defun_header + (defun_keyword) + (unquoting_lit + (sym_lit))))) + (unquoting_lit + (list_lit + (sym_lit) + (list_lit + (sym_lit) + (sym_lit))))))) ================================================================================ Weird quoting @@ -1125,3 +1155,164 @@ Issue #5 (defpackage) (kwd_lit (kwd_symbol)) (package_lit)))) + +================================================================================ +Issue #6 (#\Replacement_Character) +================================================================================ +#\Replacement_Character +-------------------------------------------------------------------------------- + +(source + (char_lit)) + +================================================================================ +loop with +================================================================================ +(loop with values) +(loop with values = a) +(loop with values + finally + (return values)) +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit))))) + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (sym_lit))))) + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit))) + (loop_clause + (termination_clause + (list_lit + (sym_lit) + (sym_lit))))))) + +================================================================================ +loop with 2 +================================================================================ +(loop with consecutive-yields fixnum = 0) +(loop with consecutive-yields fixnum = 0 do + (block block)) + +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (sym_lit) + (num_lit))))) + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (sym_lit) + (num_lit))) + (loop_clause + (do_clause + (list_lit + (sym_lit) + (sym_lit))))))) + +================================================================================ +Loop with keywords (TODO: do should not by type of with!) +================================================================================ +(loop :with b :do + (setq b + x) + ) +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (kwd_lit + (kwd_symbol)) + (list_lit + (sym_lit) + (sym_lit) + (sym_lit))))))) + +================================================================================ +Loop with keywords 2 +================================================================================ + + (loop + for id upfrom 0 + with frame = (nth-frame-list index)) +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (for_clause + (sym_lit) + (for_clause_word) + (num_lit))) + (loop_clause + (with_clause + (sym_lit) + (list_lit + (sym_lit) + (sym_lit))))))) + +================================================================================ +with type should be symbol or list (TODO!!!) +================================================================================ +(loop :with b :do + (setq b x)) +-------------------------------------------------------------------------------- + +(source + (list_lit + (loop_macro + (loop_clause + (with_clause + (sym_lit) + (kwd_lit + (kwd_symbol)) + (list_lit + (sym_lit) + (sym_lit) + (sym_lit))))))) + +================================================================================ +Backslashes in strings +================================================================================ + " \( '\), \( \) " + +-------------------------------------------------------------------------------- + +(source + (str_lit)) + +================================================================================ +Chars #\( +================================================================================ + (write-char #\( stream) + +-------------------------------------------------------------------------------- + +(source + (list_lit + (sym_lit) + (char_lit) + (sym_lit))) diff --git a/test/sly b/test/sly new file mode 160000 index 000000000..0470c0281 --- /dev/null +++ b/test/sly @@ -0,0 +1 @@ +Subproject commit 0470c0281498b9de072fcbf3718fc66720eeb3d0